-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.68 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.68 KB
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
{
"name": "web-dev-template",
"version": "1.0.0",
"repository": "git@github.com:SoraY677/web-dev-template.git",
"author": "soray677 <soray677@outlook.com>",
"license": "MIT",
"private": true,
"workspaces": [
"client",
"server",
"infra",
"common"
],
"scripts": {
"setup-local": "run-s setup-local:*",
"setup-local:husky": "husky",
"dev": "run-p dev:*",
"dev:client": "npm --workspace=client run dev",
"dev:server": "npm --workspace=server run dev",
"dev:infra": "npm --workspace=infra run watch",
"build": "run-p build:*",
"build:client": "npm --workspace=client run build",
"build:server": "npm --workspace=server run build",
"bootstrap": "npm --workspace=infra run bootstrap",
"deploy": "npm --workspace=infra run deploy",
"destroy": "npm --workspace=infra run destroy",
"test": "run-p test:*",
"test:client": "npm --workspace=client run test",
"test:server": "npm --workspace=server run test",
"test-local": "run-p test-local:*",
"test-local:infra": "npm --workspace=infra run test",
"lint": "eslint \"**/*\"",
"lint:fix": "eslint --fix \"**/*\""
},
"devDependencies": {
"@eslint/js": "^9.25.1",
"@stylistic/eslint-plugin": "^5.2.3",
"@types/node": "^22.14.1",
"commander": "^13.1.0",
"eslint": "^9.25.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unicorn": "^58.0.0",
"eslint-plugin-vue": "^10.2.0",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.1",
"npm-run-all": "^4.1.5",
"rimraf": "^6.0.1",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.0",
"vue-eslint-parser": "^10.1.4"
}
}