-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.95 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
{
"name": "ticketchain_frontend",
"version": "1.0.0",
"description": "ticketchain_frontend",
"author": "Petr Ryabinn",
"engines": {
"node": "6.0.0"
},
"scripts": {
"clean": "rimraf dist/",
"build": "cross-env NODE_ENV=production webpack --config webpack.production.config.js --progress --profile --colors --display-error-details",
"dev": "babel-node server.js",
"lint": "eslint js/**",
"postinstall": "npm run build",
"start": "node server.production"
},
"dependencies": {
"antd": "^2.7.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-plugin-import": "^1.1.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"browser-sync": "^2.10.1",
"copy-webpack-plugin": "^3.0.1",
"cross-env": "^2.0.1",
"css-loader": "^0.24.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"express": "^4.14.1",
"fast-async": "^6.0.32",
"html-webpack-plugin": "^2.22.0",
"less": "^2.7.2",
"less-loader": "^2.2.3",
"lodash": "^4.17.4",
"moment": "^2.17.1",
"pipe-error-stop": "0.0.9",
"react": "^15.4.0",
"react-dom": "^15.3.1",
"react-hot-loader": "^3.0.0-beta.3",
"react-redux": "^4.4.5",
"react-router": "^3.0.2",
"redux": "^3.5.2",
"redux-promise": "^0.5.3",
"redux-thunk": "^2.1.0",
"style-loader": "^0.13.1",
"stylelint": "^4.1.0",
"webpack": "^1.13.2",
"webpack-dev-middleware": "^1.6.1",
"webpack-dev-server": "^1.15.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-stream": "^3.2.0",
"yargs": "^3.32.0"
},
"devDependencies": {
"babel-preset-stage-0": "^6.22.0"
}
}