-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 923 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
{
"name": "siphon-state",
"version": "0.4.0",
"description": "A multi-player game of politics and corruption. Make and break alliances with other parties as you try to seize control of an eroding state. Implemented with NextJS and TypeScript.",
"homepage": "https://www.siphonstate.com/",
"private": true,
"author": "Damien Snyder <damiensnyder@damiensnyder.com>",
"scripts": {
"build": "next build",
"test": "tsc logic/*.ts && tsc test.ts && tsc app.ts && node test.js -p $PORT",
"start": "node app.js -p $PORT",
"build-ts": "tsc",
"watch-ts": "tsc -w"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"next": "11.1.3",
"node-fetch": ">=3.2.10",
"react": "16.13.1",
"react-dom": "16.13.1",
"socket.io": "^2.5.0"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@types/react": "^16.9.45",
"typescript": "^3.9.7"
}
}