-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 770 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 770 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
{
"name": "comic-app-server",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./dist/bin/www",
"dev:ts": "tsc && npm start",
"lint": "tslint --project tsconfig.json"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"cookie-parser": "^1.4.4",
"debug": "^2.6.9",
"express": "^4.16.4",
"firebase-admin": "^8.1.0",
"http-errors": "^1.6.3",
"morgan": "^1.9.1",
"request": "^2.88.0"
},
"devDependencies": {
"tslint": "^5.12.0",
"tslint-no-circular-imports": "^0.7.0",
"typescript": "^4.2.4",
"@types/cheerio": "^0.22.10",
"@types/debug": "^4.1.2",
"@types/express": "^4.16.1",
"@types/morgan": "^1.7.35",
"@types/node": "^11.9.4",
"@types/request": "^2.48.1"
}
}