-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.96 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
{
"name": "project-name",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"directory": "project-name/project-name"
},
"workspaces": {
"packages": [
"packages/core/*"
]
},
"scripts": {
"build": "yarn storybook:build",
"build:all": "yarn workspaces foreach run build",
"format": "prettier --check './**/*.{js,ts,tsx,vue}'",
"format:fix": "prettier --write './**/*.{js,ts,tsx,vue}'",
"lint": "eslint './!(packages)/**/*.{js,ts,tsx}'",
"lint:all": "yarn workspaces foreach run lint",
"lint:all:fix": "yarn workspaces foreach run lint:fix",
"lint:fix": "eslint --fix './!(packages)/**/*.{js,ts,tsx}'",
"lint:styles": "stylelint -f verbose '**/*.css'",
"lint:styles:fix": "stylelint --fix -f verbose '**/*.css'",
"postinstall": "husky install",
"storybook:dev": "start-storybook -p 6006 --no-open",
"storybook:build": "build-storybook -o docs/dist",
"test:all": "yarn workspaces foreach run test",
"test:coverage": "yarn workspaces foreach run test --collectCoverage"
},
"packageManager": "[email protected]",
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@mdx-js/react": "^1.6.22",
"@storybook/addon-docs": "next",
"@storybook/addon-essentials": "next",
"@storybook/vue3": "next",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"@vue/vue3-jest": "^27.0.0-alpha.4",
"esbuild": "^0.14.14",
"esbuild-runner": "^2.2.1",
"eslint": "^8.7.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-prettier-vue": "^3.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-vue": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"prettier": "2.5.1",
"storybook-builder-vite": "^0.1.13",
"stylelint": "^14.3.0",
"stylelint-config-idiomatic-order": "^8.1.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"stylelint-selector-bem-pattern": "^2.1.1",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
},
"dependencies": {
"autoprefixer": "^10.4.2",
"cssnano": "5.0.16",
"defu": "^5.0.1",
"postcss": "^8.4.5",
"postcss-at-rules-variables": "^0.3.0",
"postcss-custom-media": "^8.0.0",
"postcss-import": "^14.0.2",
"postcss-mixins": "^9.0.1",
"postcss-nested": "^5.0.6",
"postcss-pxtorem": "^6.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"vite": "^2.7.13",
"vue": "^3.2.26"
}
}