-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 863 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
{
"name": "typescript",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"build": "tsc --build ./",
"dev": "tsc --build ./ && node ./build/src/server/app.js",
"test": "mocha -r ts-node/register src/test/api.test.ts --exit",
"test-js": "mocha ./build/src/test/api.test.js",
"start": "node ./build/src/server/app.js"
},
"keywords": [],
"author": "scyth3-c",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/node": "^16.11.6",
"@types/socket.io": "^3.0.2",
"@types/uuid": "^9.0.6",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"dgram": "^1.0.1",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"helmet": "^6.0.0",
"mongoose": "^6.0.12",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"uuid": "^9.0.1"
}
}