forked from mfrachet/server-push-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 788 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 788 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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"e2e:ci": "cypress run",
"e2e": "cypress open",
"build": "lerna run build",
"format": "lerna run format",
"lint": "lerna run lint",
"check:lint": "lerna run check:lint",
"start": "parcel example/index.html",
"start:test-server": "node ./example/server",
"release": "npm i && npm run bootstrap && npm run check:lint && npm run build && lerna version && lerna publish"
},
"devDependencies": {
"@reach/router": "^1.3.4",
"cors": "^2.8.5",
"cypress": "^5.2.0",
"express": "^4.17.1",
"lerna": "^3.22.1",
"parcel-bundler": "^1.12.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"socket.io": "^3.0.3",
"ws": "^7.3.1"
}
}