generated from sota1235/ts-backend-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.17 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
{
"name": "ts-simple-boilderplate",
"version": "0.0.1",
"description": "Simple boilerplate for @sota1235",
"main": "dist/index.js",
"type": "module",
"dependencies": {
"typescript": "^5.0.0"
},
"devDependencies": {
"@sota1235/eslint-config": "5.0.1",
"eslint": "9.14.0",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"ts-loader": "9.5.1",
"typescript-eslint": "8.13.0",
"vitest": "^2.1.4"
},
"scripts": {
"build": "tsc -p ./tsconfig.publish.json",
"build:publish": "tsc -p ./tsconfig.publish.json",
"watch": "tsc --watch",
"fix": "npm run prettier && npm run eslint:fix",
"lint": "npm run eslint",
"eslint": "eslint 'src/**/*.ts'",
"eslint:fix": "npm run eslint --fix",
"prettier": "prettier './src/**/*.ts' --write",
"test": "vitest",
"test:ci": "vitest",
"prepare": "husky"
},
"keywords": [],
"author": "@sota1235",
"license": "MIT",
"lint-staged": {
"*.ts": [
"npm run fix"
]
},
"packageManager": "[email protected]+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee"
}