-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 891 Bytes
/
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
{
"name": "react-node-chat",
"version": "0.1.0",
"private": true,
"dependencies": {
"express": "^4.16.3",
"react": "^16.4.2",
"react-dom": "^16.4.2",
"react-scripts": "1.1.4",
"redux": "^4.0.0",
"socket.io": "^2.1.1",
"uuid": "^3.3.2",
"websocket": "^1.0.26"
},
"scripts": {
"start": "react-scripts start | node api/server.js",
"build": "react-scripts build",
"test:client": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"sass": "sass --watch src/styles/scss:src/styles/css",
"test:api": "jest api/*test.js --coverage",
"postinstall": "yarn build"
},
"devDependencies": {
"babel-eslint": "^8.2.6",
"enzyme": "^3.4.4",
"enzyme-adapter-react-16": "^1.2.0",
"eslint": "^5.4.0",
"eslint-plugin-react": "^7.11.1",
"react-test-renderer": "^16.4.2",
"sass": "^1.13.0"
}
}