-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 842 Bytes
/
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
{
"name": "ts-templete",
"private": true,
"version": "1.0.0",
"main": "dist/main.js",
"type": "commonjs",
"scripts": {
"dev": "ts-node src/main.ts",
"start": "node dist/main.js",
"build": "rm -rf dist && tsc",
"check": "tsc --noEmit",
"test": "jest",
"lint": "eslint '{src,test}/**/*.ts' '*.js' --fix",
"prettier": "prettier '{src,test}/**/*.ts' '*.js' --write --list-different",
"prepare": "husky"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.17.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}