-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 940 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": "specdit",
"version": "1.0.0",
"description": "A makeshift reddit api built with Node.js, Express.js, Prisma & PostgreSQL",
"main": "src/server.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "node --watch --trace-warnings --env-file=.env src/server.js",
"start": "node src/server.js",
"build": "prisma generate",
"postinstall": "prisma generate",
"migrate": "prisma migrate deploy",
"migrate:dev": "prisma migrate dev",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix"
},
"keywords": [],
"author": "Tshiamo",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.22.0",
"bcryptjs": "^2.4.3",
"express": "^4.21.1",
"hashids": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"prisma": "^5.22.0"
},
"engines": {
"node": ">=18.0.0"
},
"prisma": {
"schema": "db/prisma/schema.prisma"
}
}