-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.09 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
{
"name": "express",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"start": "nodemon server.js",
"dev": "webpack -w",
"debug": "DEBUG=express* nodemon server.js",
"test:w": "jest --watch",
"test": "jest",
"build-css": "node-sass --include-path scss scss/main.scss static/main.css",
"watch-css": "nodemon -e scss -x \"npm run build-css\""
},
"dependencies": {
"babel-core": "^6.24.0",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"body-parser": "^1.17.1",
"bulma": "^0.4.0",
"css-loader": "^0.27.3",
"ejs": "^2.5.6",
"eslint": "^3.17.1",
"express": "^4.15.2",
"express-handlebars": "^3.0.0",
"firebase": "^3.7.3",
"firebase-tools": "^3.5.0",
"fs": "^0.0.1-security",
"history": "^4.6.1",
"jest": "^19.0.2",
"jquery": "^3.1.1",
"material-ui": "^0.17.1",
"mongodb": "^2.2.24",
"net": "^1.0.2",
"nodemon": "^1.11.0",
"path": "^0.12.7",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.3",
"react-router": "^4.0.0",
"react-router-dom": "next",
"react-tap-event-plugin": "^2.0.1",
"react-test-renderer": "^15.4.2",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"style-loader": "^0.16.0",
"underscore": "^1.8.3",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"css-loader": "^0.27.3",
"enzyme": "^2.7.1",
"eslint": "^3.19.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-react": "^6.10.0",
"node-sass": "^4.5.2",
"nodemon": "^1.11.0",
"postcss-loader": "^1.3.3",
"react-addons-test-utils": "^15.4.2",
"react-hot-loader": "^1.3.1",
"react-static-webpack-plugin": "^2.1.0",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
}
}