-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "chat-app",
"version": "1.0.0",
"description": "A chat app",
"main": "index.js",
"scripts": {
"start": "babel-node server/server.js"
},
"author": "Chris Pouliot",
"license": "ISC",
"dependencies": {
"bcrypt-nodejs": "0.0.3",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"flux": "^2.1.1",
"mongodb": "^2.2.11",
"object-assign": "^4.1.0",
"pg": "^6.1.0",
"pg-hstore": "^2.3.2",
"react": "^15.3.1",
"react-dom": "^15.3.1",
"react-router": "^2.7.0",
"sequelize": "^3.27.0",
"socket.io": "^1.4.8",
"socket.io-client": "^1.4.8"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.18.0",
"babel-core": "^6.13.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.5",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-3": "^6.17.0",
"eslint": "^3.12.2",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-google": "^0.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.8.0",
"webpack": "^1.13.2"
},
"babel": {
"presets": [
"es2015"
]
}
}