-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
50 lines (50 loc) · 1.21 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
{
"name": "voya.js",
"version": "0.10.0",
"description": "a javascript text-adventure engine",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start:server": "vercel dev",
"start:client": "parcel",
"start": "npm-run-all --parallel start:server start:client",
"publish": "parcel build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/trevorsargent/voya.js.git"
},
"source": "index.html",
"keywords": [
"text-adventure",
"game"
],
"author": "Trevor Sargent",
"license": "MIT",
"bugs": {
"url": "https://github.com/trevorsargent/voya.js/issues"
},
"homepage": "https://github.com/trevorsargent/voya.js#readme",
"dependencies": {
"@trpc/client": "^10.4.0",
"@trpc/server": "^10.4.0",
"pusher": "^5.1.1-beta",
"pusher-js": "^7.5.0",
"surrealdb.js": "^0.5.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"next": "^13.0.5",
"npm-run-all": "^4.1.5",
"parcel": "^2.8.0",
"vercel": "^28.5.6"
},
"overrides": {
"@vercel/node": {
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}
}