-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"name": "evonytkrtips-infrastructure",
"type": "module",
"version": "1.0.0",
"packageManager": "[email protected]",
"description": "monorepo wrapper for evonytkrtips",
"scripts": {
"lint": "eslint --flag unstable_ts_config",
"build": "./bin/build.sh -b",
"dev": "./bin/build.sh -d",
"prepare": "husky",
"release": "release-it",
"backendDev": "cd packages/backend && dzil run script/EvonyTKRBackend"
},
"author": "Luke Schierer",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/types": "^19.5.0",
"@eslint/js": "^9.10.0",
"@pulumi/command": "^1.0.1",
"@release-it/conventional-changelog": "^8.0.2",
"@types/eslint__js": "^8.42.3",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.9.0",
"husky": "^9.1.6",
"jiti": "^1.21.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"release-it-pnpm": "^4.6.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.6.0"
},
"lint-staged": {
"*.json": [
"prettier --write"
],
"*.ts": [
"prettier --write"
]
}
}