-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.44 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "@aeternity/superhero-utils",
"version": "0.6.0",
"description": "",
"main": "dist/index.js",
"browser": "dist/index.js",
"dependencies": {},
"files": [
"dist",
"src"
],
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-loader": "^8.2.2",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.1",
"mini-css-extract-plugin": "^1.3.1",
"regenerator-runtime": "^0.13.7",
"sass": "^1.29.0",
"sass-loader": "^10.1.0",
"serve": "^11.3.2",
"style-loader": "^2.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.9.0",
"webpack-cli": "^4.2.0"
},
"optionalDependencies": {
"prop-types": "^15.7.2",
"react": "^17.0.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run build && npm run build:examples && serve examples",
"build": "webpack",
"build:examples": "npm run --prefix examples/react-webpack build && npm run --prefix examples/vue-webpack build",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aeternity/superhero-utils.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aeternity/superhero-utils/issues"
},
"homepage": "https://github.com/aeternity/superhero-utils#readme"
}