-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.32 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
{
"name": "real-time-chat-app",
"version": "0.0.1",
"description": "Real Time Chat App for Code Challenge",
"engines": {
"node": ">= 7.6.0"
},
"scripts": {
"prod": "node ./app.js",
"start": "concurrently \"npm run watch\" \"npm run assets\" --names \"📦\" --prefix name",
"assets": "webpack -w --display-max-modules 0",
"watch": "nodemon ./app.js --ignore public/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bookjan/real-time-chat-app.git"
},
"author": "bookjan",
"license": "MIT",
"dependencies": {
"express": "^4.14.1",
"file-loader": "^0.10.0",
"mime": "^1.4.1",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-dropzone": "^4.1.3",
"socket.io": "^1.7.2",
"socketio-file-upload": "^0.6.0",
"uuid": "^3.1.0"
},
"devDependencies": {
"babel-core": "6.24.0",
"babel-loader": "6.4.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"concurrently": "3.4.0",
"style-loader": "^0.13.1",
"css-loader": "0.27.3",
"node-sass": "4.5.3",
"nodemon": "1.11.0",
"postcss-loader": "1.3.3",
"sass-loader": "6.0.3",
"webpack": "2.2.1"
}
}