-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.19 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
{
"name": "api",
"version": "1.0.0",
"main": "index.ts",
"scripts": {
"start": "node api/dist/index.js",
"clean": "rm -rf api/dist",
"build": "npm -s run clean && npm -s run generate && tsc",
"generate": "npm -s run generate:prisma",
"generate:prisma": "prisma generate --schema=./api/prisma/schema.prisma"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^4.1.1",
"@types/jsonwebtoken": "^8.5.8",
"@types/nodemailer": "^6.4.4",
"bcrypt": "^5.0.1",
"body-parser": "^1.20.0",
"connect": "^3.7.0",
"cors": "^2.8.5",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"nodemailer": "^6.7.7",
"nodemon": "^2.0.18"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/lodash": "^4.14.182",
"@types/node": "^16.11.45",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"prisma": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"description": ""
}