-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 2.04 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
67
{
"name": "pergel-system",
"type": "module",
"version": "0.8.2",
"private": true,
"packageManager": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/oku-ui/pergel.git"
},
"engines": {
"node": "^20.10.0 || >=20.10.0"
},
"scripts": {
"install": "cd packages-core && pnpm install",
"build": "pnpm build:pergel && pnpm nx run-many -t build",
"build:pergel": "cd packages-core && pnpm build",
"build:skip": "pnpm nx run-many -t build --skip-nx-cache",
"dev:build": "pnpm --filter './packages/**' dev:build",
"dev:prepare": "pnpm --filter './packages/**' dev:prepare",
"themes:prepare": "pnpm --filter './themes/**' dev:prepare",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"release": "pnpm build && bumpp --commit --push --tag",
"release:local": "bumpp --no-push && pnpm build && pnpm publish --no-git-checks",
"typecheck": "tsc --noEmit -p tsconfig.json",
"check": "pnpm build && pnpm lint:fix && pnpm typecheck",
"prepare": "npx simple-git-hooks",
"rm:node": "find ./ -name 'node_modules' -type d -prune -exec rm -rf '{}' +"
},
"dependencies": {
"@pergel/module-graphql": "workspace:*",
"drizzle-kit": "^0.20.14",
"drizzle-orm": "^0.30.7",
"postgres": "^3.4.4"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.0",
"@types/node": "^20.12.4",
"automd": "^0.3.7",
"bumpp": "9.4.0",
"changelogithub": "^0.13.5",
"eslint": "^9.0.0",
"eslint-plugin-tailwindcss": "^3.15.1",
"json-editor-vue": "^0.14.0",
"lint-staged": "^15.2.2",
"nx": "^18.2.2",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.4.3",
"vite": "5.2.8",
"vitest": "^1.5.0"
},
"resolutions": {
"@pergel/nuxt": "link:./packages/nuxt",
"bumpp": "9.4.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint . --fix"
}
}