-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.68 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "sky-admin",
"private": true,
"version": "0.0.0",
"license": "MIT",
"description": "Sky Admin is a backstage management system built on Vue3, Vite4, TypeScript and Element, developed by skyclouds2001 and was available under MIT license.",
"keywords": [
"admin",
"management",
"system",
"skyclouds2001"
],
"homepage": "https://github.com/skyclouds2001/sky-admin#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/skyclouds2001/sky-admin.git"
},
"bugs": {
"url": "https://github.com/skyclouds2001/sky-admin/issues",
"email": "[email protected]"
},
"author": {
"name": "skyclouds2001",
"email": "[email protected]",
"url": "https://skyclouds2001.github.io"
},
"contributors": [
"skyclouds2001"
],
"packageManager": "[email protected]",
"engines": {
"node": ">=18.13.0",
"npm": ">=9.6.0",
"yarn": ">=1.22.0",
"pnpm": ">=8.4.0"
},
"scripts": {
"dev": "cross-env NODE_ENV=development pnpm --stream -r dev",
"build": "cross-env NODE_ENV=production pnpm --stream -r build",
"preview": "pnpm --stream -r preview",
"lint": "pnpm lint:eslint && pnpm lint:prettier && pnpm lint:stylelint && pnpm lint:markdownlint && pnpm lint:type",
"lint:eslint": "eslint --fix .",
"lint:prettier": "prettier --write .",
"lint:stylelint": "stylelint --fix",
"lint:markdownlint": "markdownlint --fix **/*.md",
"lint:type": "vue-tsc --noEmit",
"test": "pnpm test:unit && pnpm test:e2e",
"test:unit": "cross-env NODE_ENV=test vitest",
"test:e2e": "cross-env NODE_ENV=test playwright test",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"clean": "rimraf node_modules && rimraf dist",
"changeset": "changeset",
"bump": "changeset version",
"commit": "cz",
"prepare": "is-ci || husky install",
"preinstall": "only-allow pnpm"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@playwright/test": "^1.41.1",
"@testing-library/vue": "^8.0.1",
"@types/node": "^20.11.13",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vitest/coverage-v8": "^1.2.2",
"@vitest/ui": "^1.2.2",
"commitizen": "^4.3.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.4",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-playwright": "^0.22.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-testing-library": "^6.2.0",
"eslint-plugin-vitest": "^0.3.21",
"eslint-plugin-vue": "^9.21.0",
"husky": "^9.0.7",
"is-ci": "^3.0.1",
"jsdom": "^24.0.0",
"lint-staged": "^15.2.1",
"markdownlint": "^0.33.0",
"markdownlint-cli": "^0.39.0",
"only-allow": "^1.2.1",
"pnpm": "8.10.0",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"rimraf": "^5.0.5",
"stylelint": "^16.2.0",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-recess-order": "^4.4.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"vitepress": "1.0.0-rc.40",
"vitest": "^1.2.2",
"vue-tsc": "^1.8.27"
}
}