-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "backend",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "tsc",
"start": "node ./dist/app.js",
"dev": "ts-node-dev --respawn ./app.ts",
"lint": "eslint . --ext .ts"
},
"dependencies": {
"@prisma/client": "^3.7.0",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cron": "^1.8.2",
"debug": "~2.6.9",
"express": "~4.16.1",
"helmet": "^4.6.0",
"http-errors": "~1.6.3",
"lodash": "^4.17.21",
"morgan": "~1.9.1",
"node-fetch": "^3.1.0",
"puppeteer": "^13.0.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/cron": "^1.7.3",
"@types/express": "^4.17.13",
"@types/http-errors": "^1.8.2",
"@types/lodash": "^4.14.178",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-security": "^1.4.0",
"prisma": "^3.7.0",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=16.13.1",
"npm": ">=8.1.2"
}
}