-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.21 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
49
50
51
{
"name": "bookstore",
"version": "1.0.0",
"scripts": {
"dev": "nodemon",
"build": "rm -rf dist && tsc && NODE_ENV=production node dist/index.js"
},
"author": "Mikias Tulu",
"repository": "https://github.com/mikias-tulu/bookstore-backend",
"license": "",
"dependencies": {
"@prisma/client": "^3.15.2",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.1",
"express-async-router": "^0.1.15",
"express-validator": "^7.0.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.4",
"@types/module-alias": "^2.0.1",
"@types/morgan": "^1.9.3",
"module-alias": "^2.2.2",
"nodemon": "^2.0.12",
"prisma": "^3.15.2",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"nodemonConfig": {
"watch": [
"src"
],
"ext": "ts",
"exec": "ts-node src/index.ts"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
}
}