-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.48 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
{
"name": "chorus",
"version": "1.0.0",
"description": "Live stream comment application",
"main": "index.js",
"scripts": {
"watch": "webpack --progress --colors --watch",
"start": "NODE_PORT=8080 HOSTNAME=\"127.0.0.1\" nodemon server.js",
"start:prod": "NODE_PORT=2368 HOSTNAME=\"127.0.0.1\" pm2 start /home/chorus/server.js",
"build:prod": "webpack -p"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yurm04/Chorus.git"
},
"author": "Yuraima Estevez <https://github.com/yurm04>",
"license": "ISC",
"bugs": {
"url": "https://github.com/yurm04/Chorus/issues"
},
"homepage": "https://github.com/yurm04/Chorus#readme",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^6.2.10",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.26.1",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.24.1",
"node-sass": "^4.1.1",
"nodemon": "^1.11.0",
"sass-loader": "^4.1.1",
"style-loader": "^0.13.1",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"axios": "^0.15.3",
"good": "^7.1.0",
"good-console": "^6.2.0",
"good-squeeze": "^5.0.1",
"hapi": "^16.0.2",
"inert": "^4.0.3",
"moment": "^2.17.1",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"react-router": "^3.0.0",
"redis-connection": "^5.0.0",
"socket.io": "^1.7.2",
"xss-filters": "^1.2.7"
}
}