-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.64 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
55
{
"name": "dnd-vtt",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=24 <25"
},
"workspaces": [
"shared",
"client",
"server"
],
"scripts": {
"dev": "concurrently \"npm run dev --workspace=server\" \"npm run dev --workspace=client\"",
"build": "npm run build --workspace=shared && npm run build --workspace=client && npm run build --workspace=server",
"start": "npm run start --workspace=server",
"lint": "eslint \"server/src/**/*.{ts,tsx}\" \"client/src/**/*.{ts,tsx}\" \"shared/src/**/*.{ts,tsx}\" --max-warnings 0",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,css}\"",
"assets:audit-public-urls": "npm run public-assets:audit-urls --workspace=server --",
"assets:migrate-public-urls": "npm run public-assets:migrate-urls --workspace=server --",
"prepare": "node scripts/prepare-husky.cjs",
"pretest": "npm run build --workspace=shared",
"test": "vitest run",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.58.2",
"@typescript-eslint/parser": "^8.58.2",
"@vitest/coverage-v8": "^4.1.8",
"concurrently": "^9.1.0",
"eslint": "^10.2.0",
"eslint-plugin-react-hooks": "^7.1.1",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"typescript": "^5.7.0",
"vitest": "^4.1.4"
},
"dependencies": {
"helmet": "^8.1.0"
},
"overrides": {
"gaxios": "^7.1.4",
"shell-quote": "1.10.0"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write",
"eslint --max-warnings 0"
],
"*.{json,css}": [
"prettier --write"
]
}
}