-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.37 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
{
"name": "@breeze-ui/workspace",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "pnpm --filter @breeze-ui/play dev",
"docs:dev": "pnpm --filter @breeze-ui/docs dev",
"docs:build": "pnpm --filter @breeze-ui/docs build",
"storybook": "pnpm --filter @breeze-ui/play storybook",
"test": "cross-env NODE_ENV=test pnpm --filter @breeze-ui/components test",
"build": "cross-env NODE_ENV=production pnpm --filter breeze-ui-lib build",
"build:dev": "cross-env NODE_ENV=development pnpm --filter breeze-ui-lib build:watch",
"lint": "eslint --ext .js,.ts,.vue ./packages",
"lint:fix": "eslint --fix --ext .js,.ts,.vue ./packages",
"lint:prettier": "prettier --write \"packages/**/*.{js,ts,tsx,css,less,scss,vue,html}\"",
"lint:stylelint": "stylelint \"**/*.{css,scss,vue}\" --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@popperjs/core": "^2.11.8",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.11.20",
"@types/shelljs": "^0.8.15",
"@vitejs/plugin-vue": "^5.0.4",
"@vitejs/plugin-vue-jsx": "^3.1.0",
"@vue/tsconfig": "^0.5.1",
"async-validator": "^4.2.5",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"release-it": "^18.1.2",
"shelljs": "^0.8.5",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vitest": "^1.4.0",
"vue-tsc": "^1.8.27",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.25.0",
"prettier": "^3.2.5",
"stylelint": "^16.6.1",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^13.1.0"
},
"dependencies": {
"@breeze-ui/hooks": "workspace:*",
"@breeze-ui/theme": "workspace:*",
"@breeze-ui/utils": "workspace:*",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/vue-fontawesome": "^3.0.8",
"breeze-ui-lib": "workspace:*",
"lodash-es": "^4.17.21",
"sass": "^1.84.0",
"vue": "^3.4.19"
}
}