-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
66 lines (66 loc) · 1.95 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "shadcnui-boilerplate",
"type": "module",
"version": "1.1.0",
"private": true,
"packageManager": "[email protected]",
"homepage": "https://github.com/TinsFox/shadcnui-boilerplate",
"repository": {
"url": "https://github.com/TinsFox/shadcnui-boilerplate",
"type": "git"
},
"scripts": {
"admin:build": "turbo --filter admin build",
"admin:dev": "turbo --filter admin dev",
"api:deploy": "pnpm --filter api workers:deploy",
"api:dev": "turbo --filter api dev",
"coverage": "vitest run --coverage",
"dev": "turbo dev",
"docs:build": "turbo vitepress build docs",
"docs:dev": "turbo vitepress dev docs",
"docs:preview": "turbo vitepress preview docs",
"generate": "tsx scripts/generate-exports.ts",
"lint": "eslint",
"lint:fix": "eslint --fix --quiet --no-warn-ignored",
"prepare": "pnpm exec simple-git-hooks",
"release": "release-it",
"tauri:build": "turbo build --filter tauri",
"tauri:dev": "turbo dev --filter tauri",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest watch"
},
"dependencies": {
"dotenv": "^16.4.5"
},
"devDependencies": {
"@chromatic-com/storybook": "^3.2.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@faker-js/faker": "^9.2.0",
"@types/node": "^22.9.3",
"eslint": "^9.14.0",
"eslint-config-hyoban": "^3.1.12",
"eslint-plugin-storybook": "^0.11.0",
"lint-staged": "^15.2.10",
"release-it": "^17.10.0",
"release-it-pnpm": "^4.6.3",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"turbo": "^2.3.0",
"typescript": "^5.6.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx --no -- commitlint --edit"
},
"lint-staged": {
"*": "eslint --fix --quiet --no-warn-ignored"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
}
}