-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·53 lines (53 loc) · 1.62 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
52
53
{
"name": "star",
"dependencies": {
"debounce": "^1.1.0",
"md5": "^2.2.1",
"page": "^1.8.6",
"prop-types": "^15.6.0",
"qs": "^6.5.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"super-helpers": "^0.0.2",
"superagent": "^3.8.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-eslint": "8",
"babel-jest": "^21.2.0",
"babel-loader": "^7.1.4",
"babel-minify-webpack-plugin": "^0.2.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-plugin-react": "^7.4.0",
"extract-text-webpack-plugin": "^3.0.1",
"file-loader": "^1.1.4",
"jest": "^21.2.1",
"jsdoc": "^3.5.5",
"less": "^2.7.3",
"less-loader": "^4.1.0",
"log4js": "^2.3.3",
"mockdate": "^2.0.2",
"node-sass": "^4.8.3",
"normalize.css": "^7.0.0",
"resolve-url-loader": "^2.3.0",
"sass-loader": "^6.0.7",
"style-loader": "^0.19.0",
"url-loader": "^0.5.9",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.9.1"
},
"scripts": {
"test": "jest --config .jest-config.json",
"test-watch": "jest --config .jest-config.json --watch",
"dev": "./node_modules/.bin/webpack-dev-server -d --content-base web/ --history-api-fallback",
"build": "./node_modules/.bin/webpack --progress --color",
"prod": "env NODE_ENV=production ./node_modules/.bin/webpack --progress --color"
}
}