-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
91 lines (91 loc) · 2.58 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"dependencies": {
"@prisma/client": "^5.9.1",
"@sentry/node": "^7.81.1",
"@sentry/tracing": "^7.81.1",
"@types/node": "^20.11.20",
"aws-sdk": "^2.1408.0",
"axios": "^0.26.1",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"csrf": "^3.1.0",
"dayjs": "^1.11.3",
"dotenv": "^10.0.0",
"ejs": "^3.1.8",
"express": "^4.17.1",
"express-session": "^1.17.3",
"express-validator": "^6.14.0",
"express-ws": "^5.0.2",
"form-data": "^4.0.0",
"helmet": "^4.6.0",
"jose": "^5.2.2",
"lodash.groupby": "^4.6.0",
"morgan": "^1.10.0",
"node-cron": "^3.0.3",
"onvif": "^0.6.5",
"openai": "^4.47.2",
"pidusage": "^3.0.0",
"sharp": "^0.33.3",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"uuid": "^9.0.1"
},
"scripts": {
"copy-assets": "cp -r src/views src/public dist/.",
"build": "prisma generate && tsc && tsc-alias && npm run copy-assets",
"dev": "nodemon",
"debug": "nodemon --inspect",
"start": "prisma generate && NODE_ENV=production node dist/index.js",
"generate-keys": "node dist/generateKeySets.js",
"format": "prettier ./src --write"
},
"name": "teleicu_middleware",
"description": "Middleware to help tunnel CCTV Streams and ONVIF APIs for TeleICU",
"version": "0.0.1",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/coronasafe/teleicu_middleware.git"
},
"keywords": [
"teleicu",
"express",
"onvif"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/coronasafe/teleicu_middleware/issues"
},
"homepage": "https://github.com/coronasafe/teleicu_middleware#readme",
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/connect-flash": "^0.0.40",
"@types/cookie-parser": "^1.4.6",
"@types/cors": "^2.8.15",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.21",
"@types/express-serve-static-core": "^4.19.2",
"@types/express-session": "^1.17.9",
"@types/express-ws": "^3.0.1",
"@types/lodash.groupby": "^4.6.8",
"@types/morgan": "^1.9.7",
"@types/node-cron": "^3.0.11",
"@types/pidusage": "^2.0.4",
"@types/swagger-jsdoc": "^6.0.2",
"@types/swagger-ui-express": "^4.1.5",
"@types/uuid": "^9.0.8",
"nodemon": "^2.0.19",
"prettier": "^3.2.5",
"prisma": "^5.9.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^4.2.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"engines": {
"node": "v20.17.0"
}
}