-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "express-ts-starter",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"repository": "",
"author": "DarkPhotonBeam",
"license": "MIT",
"private": true,
"scripts": {
"start": "node dist/index.js",
"postinstall": "tsc --project ./tsconfig.prod.json",
"build": "yarn postinstall",
"dev": "nodemon --config nodemon.json src/index.ts",
"dev:debug": "nodemon --config nodemon.json --inspect-brk src/index.ts",
"gen:key": "node -e \"console.log(require('crypto').randomBytes(256).toString('base64'));\""
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^17.0.5",
"nodemon": "^2.0.15",
"ts-node": "^10.4.0",
"tsc": "^2.0.3",
"typescript": "^4.5.4"
},
"dependencies": {
"@types/pino-http": "^5.8.1",
"@types/socket.io": "^3.0.2",
"body-parser": "^1.19.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"socket.io": "^4.5.0"
},
"engines": {
"node": "16.13.0",
"npm": "8.8.0",
"yarn": "1.22.17"
}
}