-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.7 KB
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
52
53
54
55
56
57
58
59
60
{
"name": "cmpmp-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"lint": "eslint . --ext .ts",
"start": "ts-node ./src/bin/www",
"swagger": "tsoa spec",
"predev:start": "npm run swagger",
"prebuild": "npm run swagger",
"dev:start": "npm-run-all lint start",
"dev": "nodemon --watch src -e ts,css --exec npm run dev:start"
},
"dependencies": {
"@prisma/client": "^4.4.0",
"@quixo3/prisma-session-store": "^3.1.10",
"axios": "^0.27.2",
"connect-session-sequelize": "^7.1.5",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^16.0.1",
"express": "~4.16.1",
"express-session": "^1.17.3",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"morgan": "~1.9.1",
"openid-client": "^5.1.9",
"passport": "^0.6.0",
"prisma": "^4.4.0",
"query-string": "^7.1.1",
"sequelize": "^6.23.0",
"sqlite3": "^5.1.1",
"swagger-ui-express": "^4.5.0",
"tsoa": "^4.1.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.12",
"@types/csurf": "^1.11.2",
"@types/express": "^4.17.13",
"@types/express-mysql-session": "^2.1.3",
"@types/express-session": "^1.17.5",
"@types/fs-extra": "^9.0.13",
"@types/http-errors": "^1.8.2",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.14",
"@types/passport": "^1.0.11",
"@types/shelljs": "^0.8.11",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"concurrently": "^7.4.0",
"eslint": "^8.23.0",
"fs-extra": "^10.1.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
}
}