-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 3.13 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
{
"name": "ohu-mobile",
"version": "0.0.0",
"description": "Fantastic UI Toolkit",
"private": true,
"scripts": {
"prepare": "husky",
"preinstall": "npx only-allow pnpm",
"build": "pnpm build:icons && pnpm build:components",
"build:components": "pnpm --filter=\"@ohu-mobile/core\" build:components",
"build:icons": "pnpm --filter=\"@ohu-mobile/icons\" build",
"typecheck": "pnpm -r --parallel run typecheck",
"lint": "eslint . --report-unused-disable-directives --ignore-path .gitignore --max-warnings 0 --cache",
"format": "eslint --cache --fix --ignore-path .gitignore --ext .ts,.tsx .",
"test": "vitest --watch=false",
"coverage": "pnpm -r --parallel run test:cov",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"changelog": "changeset",
"version": "changeset version",
"release": "changeset publish",
"commit": "commit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeffwcx/ohu-mobile.git"
},
"keywords": [
"components",
"vue",
"vue-components",
"ui-kit",
"ohu"
],
"author": "jeffwcx",
"license": "MIT",
"bugs": {
"url": "https://github.com/jeffwcx/ohu-mobile/issues"
},
"homepage": "https://github.com/jeffwcx/ohu-mobile#readme",
"devDependencies": {
"@changesets/changelog-git": "^0.2.1",
"@changesets/cli": "^2.28.1",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.3",
"@commitlint/prompt-cli": "^18.6.1",
"@storybook/addon-essentials": "^8.6.12",
"@storybook/addon-interactions": "^8.6.12",
"@storybook/addon-links": "^8.6.12",
"@storybook/addon-storysource": "^8.6.12",
"@storybook/addon-viewport": "^8.6.12",
"@storybook/blocks": "^8.6.12",
"@storybook/builder-vite": "^8.6.12",
"@storybook/manager-api": "^8.6.12",
"@storybook/test": "^8.6.12",
"@storybook/theming": "^8.6.12",
"@storybook/vue": "^7.6.17",
"@storybook/vue-vite": "^7.6.17",
"@tsconfig/node-lts": "^20.1.3",
"@types/node": "^20.17.30",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vitejs/plugin-vue2": "^2.3.3",
"@vitejs/plugin-vue2-jsx": "^1.1.1",
"@vitest/coverage-istanbul": "^1.6.1",
"@vue/babel-preset-jsx": "^1.4.0",
"autoprefixer": "^10.4.21",
"commitizen": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-html": "^8.0.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.12.0",
"eslint-plugin-vue": "^9.22.0",
"husky": "^9.1.7",
"inquirer": "^9.3.7",
"jsdom": "^24.1.3",
"lint-staged": "^15.5.0",
"postcss-pxtorem": "^6.1.0",
"prettier": "^3.5.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.86.3",
"storybook": "^8.6.12",
"typescript": "^5.4.5",
"vite": "^5.4.17",
"vitest": "^1.6.1",
"vue": "^2.7.16",
"vue-loader": "^15.11.1"
},
"lint-staged": {
"**/*.{js,mjs,cjs,ts,tsx,mts,cts}": "pnpm format",
"**/*.{json,scss,md}": "prettier --write --ignore-unknown"
},
"engines": {
"node": ">=18.20.8"
}
}