-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 939 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
30
31
32
33
34
{
"name": "kodeventure-server",
"version": "1.0.0",
"description": "Server for Kodeventure programming RPG",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node ./src/server.ts",
"start": "tsnd --unhandled-rejections=strict --no-warnings --respawn ./src/server.ts",
"prod": "npm run build && npm run start"
},
"keywords": [],
"author": "Kodeworks",
"license": "BSD-3-Clause",
"repository": "https://github.com/Kodeworks/kodeventure-server",
"type": "module",
"dependencies": {
"abort-controller": "^3.0.0",
"body-parser": "^1.20.1",
"chalk": "^3.0.0",
"express": "^4.18.2",
"mongoose": "^5.13.15",
"node-fetch": "^3.2.10",
"selfsigned": "^1.10.7",
"ws": "^7.4.6"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/express": "^4.17.2",
"@types/mongoose": "^5.7.1",
"@types/node-fetch": "^2.5.5",
"@types/ws": "^7.2.1"
}
}