-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 1.94 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@localzet/triangle",
"version": "1.5.0",
"type": "module",
"main": "./nuxt.config.ts",
"packageManager": "pnpm@8.14.0",
"keywords": [
"localzet",
"triangle",
"nuxt",
"vue"
],
"license": "AGPL-3.0-or-later",
"author": {
"name": "Ivan Zorin",
"email": "creator@localzet.com",
"url": "https://github.com/localzet"
},
"repository": {
"type": "git",
"url": "https://github.com/localzet/Triangle.git"
},
"bugs": {
"url": "https://github.com/localzet/Triangle/issues"
},
"homepage": "https://github.com/localzet/Triangle",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"workspaces": [
"app",
"layers/*"
],
"scripts": {
"dev": "pnpm --filter=app dev",
"build": "pnpm --filter=app build",
"generate": "pnpm --filter=app generate",
"electron": "pnpm --filter=app electron",
"clean:all": "pnpm -r clean && rimraf .nuxt .output node_modules",
"test": "run-p test:*",
"test:tsc": "pnpm --filter=app typecheck",
"test:lint": "eslint .",
"lint": "run-s lint:eslint:fix",
"lint:eslint:fix": "eslint --fix ."
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.5.4",
"@typescript-eslint/eslint-plugin": "7.6.0",
"eslint": "8.57.0",
"eslint-plugin-sonarjs": "^0.25.1",
"eslint-plugin-tailwindcss": "3.15.1",
"eslint-plugin-vue": "9.24.1",
"eslint-plugin-vuejs-accessibility": "2.2.1",
"lint-staged": "15.2.2",
"npm-run-all": "4.1.5",
"rimraf": "5.0.5",
"std-env": "3.7.0",
"tailwindcss": "3.4.3",
"typescript": "5.4.5",
"vue-tsc": "2.0.12"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.(ts|vue)": [
"eslint --fix"
]
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"postcss",
"vue",
"vite",
"@unhead/vue",
"webpack"
]
}
},
"publishConfig": {
"access": "public"
}
}