-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.15 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
{
"name": "backend",
"type": "module",
"description": "",
"main": "index.js",
"scripts": {
"preinstall": "npx -y only-allow pnpm",
"build": "tsc && tsc-alias",
"lint": "prettier -w ./src",
"test": "jest",
"dev": "nodemon -e ts -w ./src -x 'npm run start'",
"prestart": "npm run build",
"start": "node .dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/midnqp/backend.git"
},
"author": "midnqp",
"license": "MIT",
"bugs": {
"url": "https://github.com/midnqp/backend/issues"
},
"homepage": "https://github.com/midnqp/backend#readme",
"dependencies": {
"@prisma/client": "5.10.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"passport": "^0.7.0",
"prisma": "^5.7.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.10.6",
"@types/passport": "^1.0.16",
"jest": "^29.7.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"tsc-alias": "^1.8.8",
"typescript": "^5.3.3"
},
"packageManager": "[email protected]+sha256.01c01eeb990e379b31ef19c03e9d06a14afa5250b82e81303f88721c99ff2e6f"
}