-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.54 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
{
"name": "roomsplit",
"version": "1.0.0",
"description": "Individual Project",
"main": "server.js",
"scripts": {
"start": "export NODE_ENV=development; nodemon server/server.js",
"test": "export NODE_ENV=test && mocha ./test",
"build": "./node_modules/.bin/webpack -w",
"devserve": "webpack-dev-server --content-base build/ --hot --inline",
"devservetest": "webpack-dev-server --inline --content-base . --history-api-fallback"
},
"author": "Edward Park",
"license": "ISC",
"dependencies": {
"express": "^4.14.0",
"express-session": "^1.13.0",
"moment": "^2.15.2",
"mongodb": "^2.0.47",
"mongoose": "^4.6.5",
"querystring": "^0.2.0",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"react-router": "^3.0.0",
"request": "^2.78.0"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-register": "^6.18.0",
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"chai": "^3.5.0",
"chai-enzyme": "^0.5.2",
"chai-immutable": "^1.6.0",
"cookie-parser": "^1.4.3",
"ejs": "^2.5.2",
"enzyme": "^2.5.1",
"fs": "0.0.1-security",
"html-webpack-plugin": "^2.24.0",
"mocha": "^2.5.3",
"nodemon": "^1.11.0",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"selenium": "^2.20.0",
"sequelize": "^3.24.5",
"sinon": "^1.17.6",
"supertest": "^2.0.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"whatwg-fetch": "^1.0.0"
}
}