-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 2.3 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "caldera",
"version": "0.0.8",
"description": "Server side execution for React",
"main": "dist/server/index.js",
"types": "dist/server/index.d.ts",
"dependencies": {
"assert-never": "^1.2.0",
"cookie": "^0.4.0",
"fast-deep-equal": "^3.1.1",
"finalhandler": "^1.1.2",
"history": "^4.10.1",
"js-cookie": "^2.2.1",
"nanoid": "^2.1.6",
"pbf": "git+https://github.com/mapbox/pbf.git#89ed77309c7c646b809251b811c8c080a05be78a",
"react": "^16.12.0",
"react-reconciler": "^0.24.0",
"ws": "^7.2.1"
},
"devDependencies": {
"@types/finalhandler": "^1.1.0",
"@types/history": "^4.7.5",
"@types/cookie": "^0.3.3",
"@types/js-cookie": "^2.2.4",
"@types/nanoid": "^2.1.0",
"@types/node": "^12.12.6",
"@types/pbf": "^3.0.2",
"@types/react": "^16.9.17",
"@types/react-reconciler": "^0.18.0",
"@types/serve-handler": "^6.1.0",
"@types/ws": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"babel-eslint": "^10.0.3",
"concurrently": "^5.1.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-config-react-app": "^5.1.0-next.85",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.16.0",
"eslint-plugin-react-hooks": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.19.1",
"simplytyped": "^3.2.3",
"ts-loader": "^6.2.2",
"typescript": "^3.8.3",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11"
},
"scripts": {
"build-proto": "pbf src/proto/rpcEvent.proto > src/generated/rpcEvent.js && pbf src/proto/rpcMessage.proto > src/generated/rpcMessage.js",
"build": "npm run build-proto && webpack --mode=production && tsc --build tsconfig.build-server.json",
"watch": "npm run build-proto && concurrently \"webpack --mode=development --watch\" \"tsc --build tsconfig.build-server.json --watch\"",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --ext .ts,.tsx src/"
},
"author": "Yunyu Lin",
"license": "MIT",
"optionalDependencies": {
"bufferutil": "^4.0.1",
"utf-8-validate": "^5.0.2"
},
"repository": "github:calderajs/caldera"
}