-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "ts-starter",
"version": "0.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "swc ./src --out-dir build",
"watch-compile": "swc src -w --out-dir build",
"watch-dev": "nodemon --watch \"build/**/*\" -e js ./build/index.js",
"dev": "concurrently \"pnpm watch-compile\" \"pnpm watch-dev\"",
"start": "NODE_ENV=production node build/main.js",
"clean": "rm -rf build",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix",
"test": "pnpm jest",
"coverage": "pnpm jest --coverage",
"prepare": "husky install",
"release": "standard-version"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.22",
"@swc/jest": "^0.2.23",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.12",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.46.0",
"chokidar": "^3.5.3",
"concurrently": "^7.6.0",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"lint-staged": "^13.1.0",
"nodemon": "^2.0.20",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "*"
},
"type": "module",
"lint-staged": {
"src/**/*.ts": "eslint --fix"
}
}