-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "express-prisma-typescript-boilerplate",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "rimraf dist && tsc",
"predev": "npm run build",
"dev": "cross-env NODE_ENV=development concurrently \"tsc --watch\" \"nodemon -q dist/index.js\"",
"prestart": "npm run build",
"start": "cross-env NODE_ENV=production node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"deploy": "npx prisma migrate deploy && npm run start"
},
"author": "kienmatu",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/kienmatu/express-prisma-typescript-boilerplate.git"
},
"dependencies": {
"@prisma/client": "^3.10.0",
"prisma": "^3.10.0",
"@types/express": "^4.17.13",
"@types/node": "^17.0.21",
"cross-env": "^7.0.3",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"devDependencies": {
"concurrently": "^7.0.0",
"nodemon": "^2.0.15"
}
}