-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "virtual_office_server",
"description": "Virtual Office Server",
"version": "0.0.1",
"scripts": {
"dev": "nodemon",
"build": "tsc",
"test": "jest",
"format": "cd .. && npm run format",
"start": "node build/server/index.js",
"serve:e2e": "nodemon --exec 'ts-node -r dotenv/config --files ./index.ts dotenv_config_path=../cypress/.env.test'",
"start:e2e": "node -r dotenv/config build/server/index.js dotenv_config_path=../cypress/.env.test",
"generateTestData": "ts-node ./generateTestData.ts"
},
"dependencies": {
"@slack/web-api": "7.13.0",
"axios": "0.30.3",
"body-parser": "1.20.4",
"cookie-parser": "1.4.7",
"cors": "2.8.5",
"dotenv": "8.6.0",
"express": "4.22.1",
"express-async-handler": "1.2.0",
"express-basic-auth": "1.2.1",
"lodash": "4.18.1",
"luxon": "2.5.2",
"passport": "0.7.0",
"passport-http": "0.3.0",
"passport-oauth2": "1.8.0",
"passport-slack-oauth2": "1.2.0",
"pino": "7.11.0",
"pino-pretty": "7.6.1",
"reflect-metadata": "0.2.2",
"socket.io": "4.8.1",
"swagger-ui-express": "4.6.3",
"typedi": "0.10.0",
"uuid": "14.0.0"
},
"engines": {
"node": "20.x",
"npm": "8.x"
},
"devDependencies": {
"@sinonjs/fake-timers": "8.1.0",
"@types/axios": "0.14.4",
"@types/cookie-parser": "1.4.10",
"@types/cors": "2.8.19",
"@types/express": "4.17.25",
"@types/jest": "27.5.2",
"@types/lodash": "4.17.24",
"@types/luxon": "2.4.0",
"@types/node": "20.19.37",
"@types/passport": "1.0.9",
"@types/passport-http": "0.3.11",
"@types/sinonjs__fake-timers": "8.1.5",
"@types/socket.io": "3.0.2",
"@types/supertest": "2.0.16",
"@types/swagger-ui-express": "4.1.8",
"@types/uuid": "8.3.4",
"jest": "27.5.1",
"jest-junit": "13.2.0",
"nodemon": "2.0.22",
"supertest": "6.2.4",
"ts-essentials": "9.4.2",
"ts-jest": "27.1.5",
"ts-mockito": "2.6.1",
"ts-node": "10.9.2",
"typescript": "4.9.5"
}
}