-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.79 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.79 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "xt-vision-server-ts",
"version": "1.0.0",
"description": "",
"main": "/",
"bin": "dist/src/server.js",
"scripts": {
"test": "set NODE_ENV=test&& nyc mocha --timeout 10000",
"client": "set NODE_ENV=development&& npm run dev --prefix src/client",
"server": "set NODE_ENV=development&& nodemon src/server.ts",
"start": "set NODE_ENV=production&& cd src/client && npm run build && cd \"../..\" && nodemon src/server.ts",
"build:win": "set NODE_ENV=production&& cd src/client && npm run build && cd \"../..\" && tsc && mkdir \"dist/src/client\" && move src/client/dist dist/src/client && echo D | xcopy openssl \"dist/openssl\" /E",
"build:linux": "NODE_ENV=production&& cd src/client && npm run build && cd ../.. && tsc && mkdir -p dist/src/client && mv src/client/dist dist/src/client && cp -R openssl dist/openssl",
"start:prod:win": "set NODE_ENV=production&& node src/server.js",
"start:prod:linux": "NODE_ENV=production node src/server.js",
"lint": "eslint .",
"swagger-autogen": "node swagger.ts"
},
"repository": {
"type": "git",
"url": "https://srv-gitea.castel.fr/xtvision/xt-vision-server-ts.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/activedirectory2": "^1.2.3",
"@types/adm-zip": "^0.5.0",
"@types/aes-js": "^3.1.1",
"@types/amqplib": "^0.10.1",
"@types/body-parser": "^1.19.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^9.0.2",
"@types/mocha": "^10.0.1",
"@types/morgan": "^1.9.3",
"@types/mssql": "^8.0.3",
"@types/node": "^20.3.2",
"@types/node-schedule": "^2.1.0",
"@types/reflect-metadata": "^0.1.0",
"@types/sequelize": "^4.28.14",
"@types/swagger-ui-express": "^4.1.3",
"@types/uuid": "^9.0.1",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"cors": "^2.8.5",
"eslint": "^8.29.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.22",
"swagger-autogen": "^2.21.5",
"typescript": "^5.1.5"
},
"dependencies": {
"@types/multer": "^1.4.7",
"activedirectory2": "^2.1.0",
"adm-zip": "^0.5.9",
"aes-js": "^3.1.2",
"amqplib": "^0.10.3",
"axios": "^1.4.0",
"express": "^4.18.1",
"get-random-values": "^2.1.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"mssql": "^9.1.1",
"multer": "^1.4.5-lts.1",
"node-schedule": "^2.1.1",
"npm": "^9.7.2",
"nyc": "^15.1.0",
"preferences": "^2.0.2",
"sequelize": "^6.28.0",
"sequelize-typescript": "^2.1.5",
"swagger-ui-express": "^4.5.0",
"ts-node": "^10.8.2",
"uuid": "^9.0.0",
"winston": "^3.8.1",
"ws": "^8.8.1"
},
"overrides": {
"activedirectory2": {
"ldapjs": "2.3.3"
}
}
}