-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 968 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
34
{
"name": "demo-streaming",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.1.2",
"styled-components": "^5.1.0"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"concurrently": "^5.2.0",
"jest": "^25.5.4",
"nodemon": "^2.0.3",
"parcel-bundler": "^1.12.4",
"supertest": "^4.0.2"
},
"scripts": {
"test": "jest --verbose",
"prebuild": "rm -rf dist",
"build-watch": "parcel watch ./client/index.html",
"start-watch": "nodemon server/index.js",
"dev": "concurrently --kill-others \"yarn start-watch\" \"yarn build-watch\"",
"build": "parcel build ./client/index.html --no-source-maps --experimental-scope-hoisting",
"start": "yarn test && yarn build && node server/index.js"
},
"proxy": "http://localhost:3000",
"engines": {
"node": "12.16.2"
}
}