-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·42 lines (42 loc) · 1.06 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
{
"name": "express-boilerplate-ts",
"version": "1.0.0",
"description": "",
"main": "index.ts",
"scripts": {
"build": "npx tsc",
"start": "npx tsc && node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"swagger": "node swaggerGen.ts",
"test": "jest --detectOpenHandles --coverage"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.4.0",
"bcrypt": "^5.0.1",
"chai": "^4.3.6",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"esbuild": "^0.15.10",
"esbuild-node-tsc": "^2.0.4",
"express": "^4.18.1",
"jest": "^29.1.2",
"jsonwebtoken": "^8.5.1",
"mocha": "^10.0.0",
"typescript": "^4.8.3"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.9",
"@types/mocha": "^10.0.0",
"@types/node": "^18.7.16",
"concurrently": "^7.4.0",
"nodemon": "^2.0.19",
"prisma": "^4.4.0",
"ts-node-dev": "^2.0.0"
}
}