-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1004 Bytes
/
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
{
"name": "sveltekit-turbo-starter",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "turbo run build",
"validate": "run-s \"validate.*\"",
"validate.lint": "turbo run lint --parallel",
"validate.fmt": "turbo run fmt --parallel",
"dev": "turbo run dev",
"lint": "turbo run lint --parallel",
"test": "turbo run test --parallel",
"fmt": "turbo run fmt --parallel",
"check": "turbo run check --parallel",
"deploy": "turbo run deploy --parallel",
"prepare": "husky",
"commit": "czg"
},
"devDependencies": {
"@repo/eslint-config": "*",
"czg": "^1.9.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"turbo": "latest"
},
"engines": {
"node": ">=20"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Gernii/sveltekit-turbo-starter.git"
}
}