-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.64 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
{
"name": "node-ts-backend-boilerplate",
"version": "1.0.0",
"description": "Backend for the K-Lab private GPT app",
"author": "eltharynd",
"license": "ISC",
"main": "dist/index.js",
"type": "commonjs",
"scripts": {
"build": "tsc",
"dev1": "tsc -w",
"dev2": "nodemon dist/index.js",
"run:test": "NODE_ENV='test' nodemon dist/index.js",
"start": "node dist/index.js",
"test": "jest --coverage --forceExit",
"test:watch": "jest --watch --forceExit"
},
"engines": {
"node": ">=20.11.0"
},
"dependencies": {
"authpal": "^1.5.8",
"bcrypt": "^5.1.1",
"capitalize": "^2.0.4",
"chalk": "^4.0.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"class-validator-jsonschema": "^5.0.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"mime-types": "^2.1.35",
"mongoose": "^8.1.0",
"multer": "^1.4.4",
"reflect-metadata": "^0.2.1",
"routing-controllers": "^0.10.4",
"routing-controllers-openapi": "^4.0.0",
"socket.io": "^4.7.4",
"source-map-support": "^0.5.21",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/bcrypt": "^5.0.2",
"@types/capitalize": "^2.0.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.16",
"@types/supertest": "^6.0.2",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.1.5",
"nodemon": "^3.0.3",
"socket.io-mock-ts": "^1.0.2",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}