-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.6 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
{
"name": "hackhub-api-poc",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/hackhub-nl/hackhub-api-poc.git",
"author": "ivanab",
"license": "MIT",
"scripts": {
"dev": "npx ts-node-dev --respawn --transpile-only src/server.ts",
"build": "rm -rf ./dist && tsc",
"start": "npm run build && npx ts-node dist/src/server.js",
"test": "jest"
},
"dependencies": {
"bcrypt": "^5.1.1",
"config": "^3.3.11",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"nanoid": "^5.0.6",
"pg": "^8.11.3",
"pino": "^8.19.0",
"pino-pretty": "^11.0.0",
"prom-client": "^15.1.1",
"reflect-metadata": "^0.2.2",
"response-time": "^2.3.2",
"sequelize": "^6.37.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/body-parser": "^1.19.5",
"@types/config": "^3.3.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/jsonwebtoken": "^8.5.5",
"@types/lodash": "^4.17.0",
"@types/nanoid": "^3.0.0",
"@types/node": "^20.11.30",
"@types/pino": "^7.0.5",
"@types/response-time": "^2.3.8",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"jest": "^29.7.0",
"sequelize-typescript": "^2.1.6",
"supertest": "^6.3.4",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.5.3"
}
}