-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.25 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
{
"name": "buckets",
"version": "0.0.0",
"private": true,
"engines": {
"node": "6.x"
},
"scripts": {
"start": "node server/main.js",
"build": "webpack",
"build:watch": "webpack -w",
"heroku-postbuild": "NODE_ENV=development yarn; webpack; yarn;"
},
"dependencies": {
"bluebird": "3",
"body-parser": "1",
"bootstrap-sass": "3",
"bootswatch": "^3.3.7",
"cookie-parser": "1",
"debounce": "^1.0.0",
"debug": "2",
"express": "4",
"fast-glob": "1",
"history": "3",
"jade": "1",
"moment": "2",
"mongojs": "2",
"mongous": "0.2",
"morgan": "1",
"react": "15",
"react-bootstrap": "0.30",
"react-bootstrap-date-picker": "4",
"react-dom": "15",
"react-router": "3",
"react-router-bootstrap": "^0.23.1",
"react-select": "^1.0.0-rc.3",
"react-table": "5",
"serve-favicon": "2",
"socket.io": "1"
},
"devDependencies": {
"babel-core": "^6.23.1",
"babel-loader": "^6.3.1",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-2": "^6.22.0",
"css-loader": "^0.26.1",
"express-livereload": "0.0.24",
"node-sass": "^4.5.0",
"sass-loader": "^6.0.0",
"style-loader": "^0.13.1",
"webpack": "^2.2.1"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-2"
]
}
}