-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
107 lines (107 loc) · 3.01 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"license": "Apache-2.0",
"scripts": {
"clean": "rimraf build/dist/* logs",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"dev:start": "npm-run-all build start",
"dev": "nodemon --watch src -e ts,ejs --exec npm run dev:start",
"start": "node build/dist",
"test": "jest",
"test:coverage": "jest --coverage --no-cache",
"lint": "eslint . --max-warnings 0",
"prepare": "husky install"
},
"lint-staged": {
"*.{js,ts}": [
"yarn lint --fix"
],
"*.{json,md,js,ts}": [
"prettier --write"
],
"*.{snap, test.ts}": [
"yarn lint"
]
},
"dependencies": {
"@onaio/gatekeeper": "^1.0.0",
"@onaio/session-reducer": "^0.0.13",
"adm-zip": "^0.5.12",
"bull": "^4.12.9",
"client-oauth2": "^4.3.3",
"compression": "^1.7.4",
"connect-redis": "^6.1.3",
"cookie-parser": "^1.4.6",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"express-session": "^1.18.1",
"helmet": "^5.0.2",
"ioredis": "^5.0.6",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-fetch": "2.6.7",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router": "^5.2.1",
"react-router-dom": "^5.2.1",
"redis": "^4.1.0",
"redux": "^4.1.2",
"request": "^2.88.0",
"seamless-immutable": "^7.1.4",
"session-file-store": "^1.5.0",
"typescript": "^4.5.5",
"winston": "^3.6.0"
},
"devDependencies": {
"@testcontainers/redis": "^10.11.0",
"@types/adm-zip": "^0.5.5",
"@types/compression": "^1.7.2",
"@types/connect-redis": "^0.0.18",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/helmet": "^4.0.0",
"@types/ioredis-mock": "^5.6.0",
"@types/jest": "^27.4.1",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.11",
"@types/node": "^17.0.21",
"@types/node-fetch": "^2.6.1",
"@types/react": "^17.0.39",
"@types/react-redux": "7.1.22",
"@types/react-router": "^5.1.18",
"@types/request": "^2.48.8",
"@types/seamless-immutable": "^7.1.16",
"@types/session-file-store": "^1.2.2",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"coveralls": "^3.1.1",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-typestrict": "^1.0.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-sonarjs": "^0.12.0",
"husky": "^7.0.4",
"ioredis-mock": "^8.2.2",
"jest": "29.7.0",
"lint-staged": "^12.3.4",
"mockdate": "^3.0.5",
"nock": "^13.2.4",
"nodemon": "^2.0.15",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"rimraf": "^3.0.1",
"supertest": "^6.2.2",
"testcontainers": "^10.11.0",
"ts-jest": "^29.2.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.16"
}
}