-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 833 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 833 Bytes
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
{
"name": "react-chat-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"express": "^4.16.4",
"prop-types": "^15.5.10",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-icons": "^2.2.5",
"react-scripts": "1.0.11",
"socket.io": "^2.0.3",
"uuid": "^3.1.0"
},
"scripts": {
"start" : "node src/server/server.js",
"dev": "concurrently 'npm run r-start' 'npm run nodemon' 'npm run styles'",
"r-start": "react-scripts start",
"nodemon": "nodemon src/server/server.js",
"styles": "sass --watch --style compressed src/styles/index.scss:src/styles/index.css",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"concurrently": "^3.5.0",
"nodemon": "^1.11.0"
}
}