-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.24 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.24 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
{
"name": "lumi-api",
"version": "1.0.0",
"main": "index.js",
"engines": {
"node": "18"
},
"scripts": {
"dev": "tsx watch src/http/server.ts",
"build": "tsup src/http/server.ts",
"start": "node dist/server.js",
"prepare": "husky",
"test": "jest"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@prisma/client": "^5.14.0",
"@types/jest": "^29.5.12",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"express": "^4.19.2",
"git-commit-msg-linter": "^5.0.8",
"husky": "^9.0.11",
"multer": "^1.4.5-lts.1",
"pdf-parse": "^1.1.1",
"rand-token": "^1.0.1",
"supertest": "^7.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.3.0",
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/multer": "^1.4.11",
"@types/node": "^20.12.12",
"@types/pdf-parse": "^1.1.4",
"@types/supertest": "^6.0.2",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"nodemon": "^3.1.3",
"prisma": "^5.14.0",
"sucrase": "^3.35.0",
"ts-jest": "^29.1.3",
"tsup": "^8.0.2",
"tsx": "^4.10.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.10.0"
}
}