-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.71 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
{
"name": "storefront-mcii",
"version": "1.0.0",
"description": "",
"author": "",
"license": "ISC",
"devDependencies": {
"appcache-webpack-plugin": "^1.3.0",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"bootstrap": "^4.1.1",
"chart.js": "^2.7.2",
"core-js": "^2.5.5",
"cross-env": "^5.2.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.7.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.9.0",
"prettier": "^1.12.1",
"resolve-url-loader": "^2.3.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.0.1",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.1.2",
"webpack-dev-server": "^2.11.2",
"whatwg-fetch": "^2.0.4"
},
"scripts": {
"clean": "rimraf build",
"watch": "npm run clean && cross-env NODE_ENV=development webpack --watch -d --config=webpack.config.js",
"dev": "npm run clean && cross-env NODE_ENV=development webpack -d --config=webpack.config.js",
"prod": "npm run clean && cross-env NODE_ENV=production webpack -p --config=webpack.config.js",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check"
}
}