-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 912 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": "inkspiff-demo-api-repo",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "NODE_ENV=production tsc -p .",
"dev": "concurrently \"tsc -w -p .\" \"nodemon ./dist/server.js\"",
"start": "NODE_ENV=production NODE_PATH=./dist node ./dist/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start:dev": "nodemon ./dist/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^6.3.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"http-status-codes": "^2.3.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.13.1",
"concurrently": "^9.1.2",
"nodemon": "^3.1.9",
"prisma": "^6.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}