forked from enyeInc/enye-react-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "rollup-build",
"version": "1.0.0",
"description": "",
"main": "bundle.js",
"scripts": {
"build": "rollup -c config/prod.js",
"build:dev": "rollup -c config/dev.js",
"watch": "rollup -c config/dev.js -w",
"dev": "npm-run-all --parallel start watch",
"start": "node server.js"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.9.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"npm-run-all": "^4.1.2",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-livereload": "^0.6.0",
"rollup-plugin-node-globals": "^1.2.0",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-postcss": "^1.4.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"bootstrap": "^4.1.1",
"express": "^4.16.3",
"material-ui": "^0.20.1",
"moment": "^2.22.1",
"react": "^16.3.2",
"react-big-calendar": "^0.19.1",
"react-dom": "^16.3.2",
"react-proptypes": "^1.0.0",
"react-tap-event-plugin": "^3.0.2",
"reactstrap": "^6.0.1",
"serve-static": "^1.13.2"
}
}