-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"private": true,
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"tsc": "turbo run tsc",
"check": "turbo run check",
"format-check": "prettier --check .",
"format-write": "prettier --write .",
"prepare": "husky",
"deploy:party": "cd apps/web && pnpm deploy:party",
"assets:generate": "cd apps/web && pnpm assets:generate",
"assets:upload": "cd apps/web && pnpm assets:upload",
"release": "changeset && changeset version"
},
"devDependencies": {
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-organize-imports": "^4.3.0",
"prettier-plugin-svelte": "^3.5.1",
"turbo": "^2.9.6"
},
"pnpm": {
"overrides": {
"leveldown": "^6.0.0"
}
},
"lint-staged": {
"*.{js,ts,svelte,css}": [
"npx prettier --config=.prettierrc.precommit.js --write"
],
"*.{json,md,yml,yaml}": [
"npx prettier --write"
]
},
"packageManager": "pnpm@9.11.0+sha256.1c0e33f70e5df9eede84a357bdfa0b1f9dba6e58194628d48a1055756f553754",
"engines": {
"node": ">=22"
},
"name": "@tableslayer"
}