-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
75 lines (75 loc) · 2.1 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "new-empty-ts-project",
"version": "0.0.1",
"license": "MIT",
"main": ".build/index.mjs",
"files": [
".build/**/*"
],
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache . --ext ts,tsx",
"prebuild": "rimraf .build/",
"build": "node -r dotenv/config --loader tsx esbuild.config.js",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"postinstall": "husky install",
"start": "tsx src/index.ts",
"start:watch": "tsx watch src/index.ts",
"start:debug": "node --inspect --loader tsx 'src/index.ts'",
"test": "vitest",
"upgrade-all": "yarn-upgrade-all"
},
"lint-staged": {
"*.ts": [
"eslint --cache . --ext ts,tsx --fix",
"prettier --write ."
],
"*.tsx": [
"eslint --cache . --ext ts,tsx --fix",
"prettier --write ."
]
},
"devDependencies": {
"@commitlint/cli": "^18.4.0",
"@commitlint/config-conventional": "^18.4.0",
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.18.9",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"danger": "^11.3.0",
"danger-plugin-jest": "^1.3.0",
"eslint": "^8.53.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^37.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-n": "^16.3.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"pinst": "^3.0.0",
"prettier": "^3.0.3",
"prettier-standard": "^16.4.1",
"rimraf": "^5.0.5",
"tsx": "^4.1.1",
"typescript": "^5.2.2",
"vite": "^4.5.0",
"vitest": "^0.34.6",
"yarn-upgrade-all": "^0.7.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"json-colorizer": "^2.2.2",
"winston": "^3.11.0"
},
"engines": {
"node": ">=18.18.2"
},
"packageManager": "[email protected]"
}