-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.64 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
81
82
{
"name": "dashboard",
"version": "0.9.0",
"description": "",
"author": "nick bouldien",
"license": "MIT",
"repository": "",
"main": "server.js",
"engines": {
"node": "^8.9.4"
},
"scripts": {
"analyze": "/ nope / source-map-explorer build/static/js/main.*",
"build": "node ./scripts/create-env.js && NODE_ENV=production webpack -p",
"build:client": "cross-env NODE_ENV=production webpack --env.prod",
"dev": "NODE_ENV=development webpack-dev-server --env.dev",
"heroku-postbuild": "webpack -p --progress",
"start": "cross-env NODE_ENV=production node ./src/index.js",
"test": "",
"build:flow": "babel src/ -d lib/",
"prepublish": "yarn run build",
"watch": "NODE_ENV=development webpack --watch"
},
"dependencies": {
"antd": "^3.1.5",
"axios": "^0.16.1",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"dotenv-webpack": "^1.5.4",
"express": "^4.16.2",
"lodash": "^4.17.4",
"node-uuid": "^1.4.8",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-addons-update": "^15.6.2",
"react-bootstrap": "^0.31.5",
"react-dnd": "^2.5.4",
"react-dnd-html5-backend": "^2.5.4",
"react-dom": "^16.0.0",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"source-map-explorer": "^1.5.0",
"style-loader": "^0.19.0",
"styled-components": "^2.2.3",
"url-loader": "^0.6.2",
"webpack": "^3.7.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-dynamic-import-webpack": "1.0.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-preset-env": "^1.5.1",
"babel-preset-es2015": "^6.0.15",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"eslint": "^4.11.0",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.4.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.59.0",
"nodemon": "^1.12.1",
"react-hot-loader": "^3.0.0-beta.6",
"webpack-dev-server": "^2.7.1"
}
}