-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.86 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.86 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
{
"name": "api-integration-assignment",
"version": "1.0.0",
"main": "dist/app.js",
"scripts": {
"seed": "tsx tests/seed-db.ts",
"start": "node dist/app.js",
"start:prod": "NODE_ENV=production node dist/app.js",
"dev": "tsx watch ./src/app.ts",
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky",
"generate:types": "openapi-typescript openapi.yaml --output src/types/api.generated.types.ts"
},
"type": "module",
"dependencies": {
"@types/retry": "^0.12.5",
"@types/swagger-ui-express": "^4.1.8",
"axios": "^1.5.1",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.5.0",
"express-slow-down": "^2.0.3",
"jsonwebtoken": "^9.0.2",
"node-cache": "^5.1.2",
"retry": "^0.13.1",
"sequelize": "^6.6.5",
"sqlite3": "^5.1.7",
"swagger-ui-express": "^5.0.1",
"uuid": "^9.0.1",
"winston": "^3.17.0",
"yaml": "^2.7.1",
"zod": "^3.24.2",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/bcryptjs": "^2.4.4",
"@types/express": "^4.17.18",
"@types/jsonwebtoken": "^9.0.3",
"@types/node": "^20.17.28",
"@types/supertest": "^6.0.3",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^8.28.0",
"@typescript-eslint/parser": "^8.28.0",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.5",
"husky": "^9.1.7",
"jest": "^29.7.0",
"openapi-typescript": "^7.6.1",
"prettier": "^3.5.3",
"supertest": "^7.1.0",
"ts-jest": "^29.1.0",
"tsx": "^4.19.3",
"typescript": "^5.8.2"
}
}