-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.23 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": "Project",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"start": "npx nodemon app.ts",
"prisma": "npx prisma migrate dev --name init",
"prisma-deploy": "npx prisma db push",
"prisma-reset": "prisma db push --force-reset --preview-feature",
"prisma-seed": "prisma db seed",
"studio": "prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/username/Project.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/username/Project/issues"
},
"homepage": "https://github.com/username/Project#readme",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.15",
"@types/node": "^18.13.0",
"prisma": "^4.9.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@prisma/client": "4.9.0",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-query-parser": "^1.3.3",
"express-rate-limit": "^6.7.0",
"reflect-metadata": "^0.1.13"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}