-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
61
{
"name": "node-template",
"module": "src/server.ts",
"type": "module",
"description": "nodejs-template",
"tsup": {
"entry": [
"src/server.ts"
],
"splitting": false,
"sourcemap": true,
"clean": true
},
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsup",
"lint": "eslint . --fix --ext .js,.ts",
"commit": "eslint . --fix --ext .js,.ts && prettier --write . && git add .",
"prepare": "husky",
"test": "jest",
"test:watch": "jest --watchAll",
"test:coverage": "jest --coverage"
},
"dependencies": {
"express": "^4.21.1",
"multer": "^1.4.5-lts.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.0",
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@typescript-eslint/typescript-estree": "^5.59.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"eslint": "^8.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.6.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"prisma": "^5.22.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^4.7.4"
},
"peerDependencies": {
"typescript": "^4.7.4"
}
}