-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 921 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 921 Bytes
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": "tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon ./src/index.ts",
"build": "tsc",
"db:migrateDev": "prisma migrate dev",
"db:gen" : "prisma generate",
"db:pull" : "prisma db pull",
"start": "node ./build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CSSIT22/Tutorial-session.git"
},
"author": "CS22@SIT",
"license": "ISC",
"bugs": {
"url": "https://github.com/CSSIT22/Tutorial-session/issues"
},
"homepage": "https://github.com/CSSIT22/Tutorial-session#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"nodemon": "^2.0.20",
"prisma": "^4.4.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@prisma/client": "^4.4.0",
"express": "^4.18.1"
}
}