-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.56 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
{
"name": "stats_service",
"type": "commonjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node src/index.ts",
"build": "tsc",
"test": "jest",
"serve": "node dist/index.js",
"dev": "nodemon --exec ts-node src/index.ts",
"seed": "ts-node scripts/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@faker-js/faker": "^9.6.0",
"@prisma/client": "^6.4.1",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"csv-writer": "^1.6.0",
"dotenv": "^16.5.0",
"exceljs": "^4.4.0",
"express": "^4.21.2",
"fs-extra": "^11.3.0",
"glob": "^11.0.2",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"nodemon": "^3.1.9",
"pdfkit": "^0.17.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/json2csv": "^5.0.7",
"@types/jsonwebtoken": "^9.0.9",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.10",
"@types/pdfkit": "^0.13.9",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.8",
"babel-jest": "^29.7.0",
"prisma": "^6.4.1",
"supertest": "^7.0.0",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}