-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.03 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
{
"name": "cv-server",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "npx eslint . --ext ts --report-unused-disable-directives --max-warnings 0",
"dev": "tsx watch ./src/index.ts",
"start": "node --experimental-specifier-resolution=node --loader ts-node/esm ./dist/index.js",
"test": "jest"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"morgan": "^1.10.0",
"ts-node": "^10.9.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/morgan": "^1.9.9",
"@types/node": "^20.14.8",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "8.57.0",
"jest": "^29.7.0",
"supertest": "^7.0.0",
"ts-jest": "^29.1.5",
"tsx": "^4.15.7",
"typescript": "^5.5.2"
}
}