-
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.5 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.5 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": "fundtran",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "bun run index.ts",
"dev": "bun --watch index.ts",
"migrate": "./migrate",
"db:up": "./migrate latest",
"db:down": "./migrate rollback",
"db:new": "./migrate make",
"test": "NODE_ENV=test jest --detectOpenHandles",
"test:watch": "NODE_ENV=test jest --watch",
"test:coverage": "NODE_ENV=test jest --coverage"
},
"dependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/joi": "^17.2.3",
"@types/morgan": "^1.9.9",
"axios": "^1.10.0",
"bcrypt": "^6.0.0",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"exceljs": "^4.4.0",
"express": "^4.18.2",
"helmet": "^7.1.0",
"joi": "^17.12.2",
"json-2-csv": "^5.5.9",
"jsonwebtoken": "^9.0.2",
"jspdf": "^3.0.1",
"jspdf-autotable": "^5.0.2",
"knex": "^2.5.1",
"morgan": "^1.10.0",
"mysql2": "^3.9.7",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/bun": "latest",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.31.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-security": "^3.0.1",
"jest": "^30.0.4",
"prettier": "^3.6.2",
"supertest": "^7.1.3",
"ts-jest": "^29.4.0"
},
"peerDependencies": {
"typescript": "^5"
}
}