-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 3.03 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
{
"name": "snow-design",
"version": "1.0.0",
"description": "SnowDesign 组件库",
"scripts": {
"prepare": "husky",
"start:react": "storybook dev -p 6000 -c .storybook/react",
"start:vue3": "storybook dev -p 6001 -c .storybook/vue3",
"start:docs": "pnpm run -C docs dev",
"test:unit": "jest --silent",
"test:coverage": "jest --coverage",
"build:docs": "pnpm run -C docs build",
"build:lib": "pnpm recursive run build && pnpm run -C packages/vue3 build:lib",
"build:production": "pnpm recursive run build && pnpm run -C packages/vue3 build:production",
"gen": "node ./scripts/index.js gen",
"clean": "pnpm recursive run clean",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:lint-staged": "lint-staged",
"lint:stylelint": "stylelint ./**/*.{css,scss} --cache --fix",
"version:patch": "pnpm recursive run version:patch",
"version:minor": "pnpm recursive run version:minor",
"version:major": "pnpm recursive run version:major"
},
"author": "LonelySnowman",
"license": "ISC",
"dependencies": {
"@chromatic-com/storybook": "^1.6.1",
"@storybook/addon-essentials": "^8.2.4",
"@storybook/addon-interactions": "^8.2.4",
"@storybook/addon-links": "^8.2.4",
"@storybook/addon-onboarding": "^8.2.4",
"@storybook/blocks": "^8.2.4",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^8.2.4",
"@storybook/react-vite": "^8.2.4",
"@storybook/test": "^8.2.4",
"@storybook/vue3": "^8.2.4",
"@storybook/vue3-vite": "^8.2.4",
"storybook": "^8.2.4"
},
"devDependencies": {
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.12.0",
"@snow-design/tools": "workspace:*",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.3.1",
"@testing-library/vue": "^8.1.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-vue-jsx": "^4.0.0",
"@vue/babel-plugin-jsx": "^1.2.5",
"babel": "^6.23.0",
"chalk": "4",
"cross-env": "^7.0.3",
"ejs": "^3.1.10",
"eslint": "^9.12.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.37.1",
"fs-extra": "^11.1.1",
"globals": "^15.11.0",
"husky": "^9.1.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"lodash": "^4.17.21",
"ora": "^4.1.1",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"sass": "^1.77.8",
"stylelint": "^16.10.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-scss": "^6.7.0",
"tsup": "^8.3.5",
"typescript": "~5.6.3",
"typescript-eslint": "^8.8.1",
"vue": "^3.5.12"
}
}