-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.05 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
{
"name": "book-monkey4-public-api",
"description": "REST Server Backend for our Angular Book",
"version": "0.1.0",
"private": true,
"author": {
"name": "Angular Buch Team",
"email": "team@angular-buch.com"
},
"scripts": {
"prestart": "grunt",
"build": "grunt",
"start": "node ./dist/start.js",
"start:dev": "grunt && concurrently \"grunt watch\" \"nodemon\""
},
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"errorhandler": "^1.5.1",
"express": "^4.19.2",
"lodash": "^4.17.21",
"morgan": "^1.10.0",
"pug": "^3.0.3",
"swagger-ui-express": "5.0.1",
"web-push": "^3.6.7"
},
"devDependencies": {
"@types/body-parser": "1.19.5",
"@types/errorhandler": "1.5.3",
"@types/lodash": "^4.17.5",
"@types/morgan": "^1.9.9",
"@types/web-push": "^3.6.3",
"concurrently": "^8.2.2",
"grunt": "^1.6.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-ts": "^6.0.0-beta.22",
"nodemon": "^3.1.3",
"typescript": "^5.4.5"
}
}