-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 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
{
"name": "template-node",
"version": "1.0.0",
"description": "template for new node project",
"main": "index.js",
"scripts": {
"start": "tsc && node dist/index.js",
"dev": "ts-node-dev --respawn src/index.ts",
"debug": "ts-node-dev --inspect=0.0.0.0:9229 --transpile-only --project tsconfig.debug.json --respawn src/index.ts",
"build": "tsc",
"test": "jest",
"test:unit": "jest --testPathPattern=unit-tests",
"test:e2e": "jest --testPathPattern=e2e-tests",
"lint": "eslint . --ext .ts",
"format": "prettier --write 'src/**/*.ts'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.11",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.2.4",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}