-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.02 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
{
"name": "fantasy-football-snake",
"version": "0.0.1",
"private": true,
"author": "Chris Pounds",
"scripts": {
"start": "nodemon",
"dev-ui": "webpack --watch",
"build": "node node_modules/webpack/bin/webpack.js --config webpack.config.js"
},
"main": "app.js",
"nodemonConfig": {
"ignore": [
"data/"
],
"watch": [
"libs/",
"routes/",
"app.js"
],
"delay": 2500
},
"dependencies": {
"babel-loader": "^6.2.5",
"babel-preset-react": "^6.11.1",
"bluebird": "^2.10.2",
"body-parser": "^1.15.2",
"csv-parse": "^1.1.7",
"express": "^4.14.0",
"fixed-data-table-2": "^0.8.26",
"getconfig": "2.2.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "4.17.13",
"moment": "^2.14.1",
"mysql": "^2.11.1",
"promise-mysql": "^1.3.2",
"react": "^15.3.1",
"react-addons-update": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.7.0"
},
"devDependencies": {
"nodemon": "^1.19.1",
"webpack": "^1.15.0"
}
}