forked from zhaozhiming/fcc_4_2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.61 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "base-lession",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"clean": "rm -rf dist/*",
"check": "eslint src test && stylelint 'src/**/*.css'",
"test": "NODE_PATH=$NODE_PATH:$PWD/src mocha --compilers js:babel-core/register,js:babel-polyfill,css:test/css-null-compiler.js --recursive",
"webpack:client-prod": "NODE_ENV=production webpack --config webpack/client.js --progress ",
"dist": "npm run clean && npm run webpack:client-prod",
"start": "CLIENT_PORT=8000 NODE_ENV=development webpack-dashboard -- webpack-dev-server --inline --config webpack/client.js",
"start:dist": "npm run dist && cp index.html dist/ && cd dist && open index.html",
"precommit": "npm run check && npm test",
"commitmsg": "node validate-commit-msg.js"
},
"dependencies": {
"antd": "^1.5.0",
"bluebird": "^3.4.3",
"classnames": "^2.2.5",
"immutable": "^3.8.1",
"isomorphic-style-loader": "^1.0.0",
"normalize.css": "^4.1.1",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.4",
"redux": "^3.5.2",
"redux-thunk": "^2.1.0"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"babel-core": "^6.9.0",
"babel-eslint": "^6.0.4",
"babel-loader": "^6.2.4",
"babel-plugin-antd": "^0.4.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-polyfill": "^6.9.0",
"babel-preset-latest": "^6.14.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-runtime": "^6.9.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"enzyme": "^2.3.0",
"eslint": "^2.10.2",
"eslint-config-airbnb": "^9.0.1",
"eslint-import-resolver-webpack": "^0.3.0",
"eslint-loader": "^1.3.0",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.2",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"findup": "^0.1.5",
"husky": "^0.11.4",
"jsdom": "^9.12.0",
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
"postcss": "^5.0.21",
"postcss-loader": "^0.9.1",
"react-addons-test-utils": "^15.1.0",
"react-hot-loader": "^1.3.0",
"semver-regex": "^1.0.0",
"sinon": "^1.17.4",
"style-loader": "^0.13.1",
"stylelint": "^6.9.0",
"stylelint-webpack-plugin": "^0.2.0",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-dashboard": "^0.1.7",
"webpack-dev-server": "^1.14.1"
},
"engines": {
"node": "6.0.0",
"npm": "3.8.6"
}
}