-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.2 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
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@aiknew/aiknew-admin",
"version": "1.0.0",
"description": "",
"keywords": [],
"scripts": {
"db:migrate": "pnpm --filter '@aiknew/shared-admin-db' db:migrate:deploy",
"db:seed": "pnpm --filter '@aiknew/shared-admin-db' db:seed",
"db:generate": "pnpm --filter '@aiknew/shared-admin-db' db:generate",
"prebuild": "pnpm db:generate",
"build": "pnpm -r build",
"clean": "pnpm -r clean",
"api": "pnpm --filter '@aiknew/admin-api' start:dev",
"admin": "pnpm --filter '@aiknew/admin-ui' dev",
"spell:lint": "cspell lint --words-only --cache --gitignore --color '(apps|shared)/**/*.{ts,tsx,vue,css,scss,html,md,mjs,cjs}' ",
"gen:types": "pnpm openapi-typescript http://localhost:3000/api-doc-json --enum-values --make-paths-enum --root-types --root-types-no-schema-prefix --generate-path-params -o ./apps/admin-ui/src/types/open-api.ts",
"lint": "pnpm eslint .",
"lint:fix": "pnpm eslint . --fix",
"lint:inspect": "pnpm eslint --inspect-config",
"prepare": "husky",
"commit": "git-cz"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"author": "",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.38.0",
"@vitest/eslint-plugin": "catalog:ui",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.5.1",
"commitizen": "^4.3.1",
"cspell": "^9.2.1",
"cz-git": "^1.12.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-playwright": "^2.2.0",
"eslint-plugin-prettier": "^5.2.2",
"eslint-plugin-vue": "~10.0.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.6",
"openapi-typescript": "catalog:ui",
"prettier-plugin-tailwindcss": "^0.6.13",
"tsup": "^8.5.0",
"typescript": "catalog:common",
"typescript-eslint": "^8.46.0",
"vue-eslint-parser": "^10.2.0"
},
"lint-staged": {
"*.{js,mjs,jsx,ts,mts,tsx,vue,html,css,scss}": [
"eslint --fix",
"pnpm spell:lint"
]
},
"packageManager": "pnpm@10.6.2",
"engines": {
"node": ">=22.19"
}
}