-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 937 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 937 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
37
{
"name": "stephen_king_api",
"version": "1.0.0",
"description": "a rest API for the works and characters of stephen king",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.ts",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.6.0",
"cors": "^2.8.5",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"lodash.merge": "^4.6.2",
"morgan": "^1.10.0"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash.merge": "^4.6.9",
"@types/morgan": "^1.9.9",
"@types/node": "^20.8.8",
"nodemon": "^3.0.1",
"prisma": "^5.6.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}