-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.31 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
{
"name": "stopthebus",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"worker:build": "esbuild src/workers/index.ts --bundle --target=es2019 --format=esm --outfile=src/workers/dist/worker.js",
"worker:publish": "(cd src/workers && wrangler publish)",
"worker:all": "yarn worker:build && yarn worker:publish"
},
"dependencies": {
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@react-rxjs/core": "^0.8.4",
"@react-rxjs/utils": "^0.9.3",
"@splitbee/node": "^0.3.1",
"faunadb": "^4.5.2",
"framer-motion": "^5.3.3",
"human-readable-ids": "^1.0.4",
"nanoid": "^3.2.0",
"next": "^12.2.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rxjs": "^7.4.0",
"servertime": "^3.1.1",
"use-sound": "^4.0.1",
"worktop": "^0.7.3"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.3.1",
"@cloudflare/wrangler": "^1.19.7",
"@swc/jest": "^0.2.17",
"@types/jest": "^27.0.3",
"@types/node": "16.11.10",
"@types/react": "17.0.37",
"@types/react-dom": "^17.0.11",
"esbuild": "^0.14.20",
"eslint": "7",
"eslint-config-next": "12.0.4",
"jest": "^27.4.7",
"prettier": "^2.4.1",
"typescript": "4.5.2"
}
}