-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.14 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
46
47
48
{
"name": "cmyk-night-backend",
"version": "1.0.0",
"description": "CMYK-night backend",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"postinstall": "tsc && npx prisma migrate reset --force && npx prisma migrate deploy",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"build": "tsc --project ./",
"deploy": "git add . && git commit -m Heroku && git push heroku main"
},
"keywords": [
"cmyk",
"backend",
"cmkyk-night",
"frontend",
"frontend",
"cafe"
],
"author": "",
"license": "MIT",
"dependencies": {
"@prisma/client": "^2.21.2",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"pg": "^8.6.0"
},
"devDependencies": {
"@types/cors": "^2.8.10",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.11",
"@types/helmet": "^4.0.0",
"@types/node": "^14.14.37",
"@types/pg": "^7.14.11",
"nodemon": "^2.0.7",
"prisma": "^2.21.2",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.4"
},
"engines": {
"node": "14.16.1",
"npm": "6.14.12"
}
}