-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
{
"dependencies": {
"axios": "^1.5.1",
"body-parser": "^1.20.2",
"config": "^3.3.9",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"joi": "^17.11.0",
"lodash": "^4.17.21",
"mongodb-memory-server": "^9.1.3",
"mongoose": "^8.0.3",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"winston": "^3.11.0"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint": "npx eslint . --ext ts",
"test": "jest",
"start": "ts-node src/server.ts",
"benchmark": "ts-node benchmark/timeDistribution"
},
"devDependencies": {
"@types/config": "^3.3.3",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/supertest": "^2.0.16",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}