-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.64 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": "chatapp",
"version": "1.0.0",
"description": "Chat App",
"main": "server/main.js",
"scripts": {
"test": "mocha --compilers js:babel-register --watch-extensions js,jsx tests/**/**/*.test.js tests/**/**/*.test.jsx",
"start": "node server/app/main.js",
"start-dev": "nodemon --watch server -e js,html server/app/main.js",
"build-watch": "webpack --watch",
"build": "webpack",
"db-init": "pg-init chatdb",
"seed": "node seed.js"
},
"engines": {
"node": ">= 7.0.0"
},
"author": "Damon Ye",
"license": "MIT",
"dependencies": {
"axios": "^0.15.3",
"babel": "^6.5.2",
"babel-core": "^6.18.2",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"bcryptjs": "^2.4.3",
"body-parser": "^1.17.1",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"enzyme": "^2.8.2",
"express": "^4.15.2",
"express-session": "^1.15.2",
"faker": "^4.1.0",
"fs-misc": "^2.0.0",
"mocha": "^3.4.2",
"moment": "^2.18.1",
"morgan": "^1.8.1",
"nodemon": "^1.11.0",
"passport": "^0.3.2",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"prop-types": "^15.5.10",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-redux": "^5.0.3",
"react-router": "^3.0.0",
"redux": "^3.6.0",
"redux-logger": "^2.8.2",
"redux-thunk": "^2.1.0",
"sequelize": "^3.27.0",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
"socket.io": "^1.7.3",
"supertest": "^3.0.0",
"webpack": "^2.4.1"
}
}