-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.88 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
{
"name": "micro-base",
"private": true,
"version": "0.0.6",
"scripts": {
"test": "jest",
"dev": "vite",
"dev:t": "vite --mode test",
"dev:p": "vite --mode production",
"build": "vue-tsc --noEmit && vite build",
"build:t": "vue-tsc --noEmit && vite build --mode test",
"build:p": "vue-tsc --noEmit && vite build --mode production",
"preview": "vite preview",
"lint": "eslint --ext .js,.jsx,.ts,.tsx,.vue",
"prettier": "prettier --write '**/*.{js,jsx,tsx,ts,vue,json,css.scss,less}'",
"release:r": "standard-version -r",
"release:alpha": "standard-version -prerelease alpha -n",
"release:beta": "standard-version -prerelease beta",
"release:major": "standard-version -r major -n",
"release:minor": "standard-version -r minor -n",
"release:patch": "standard-version -r patch -n",
"ct:all": "git add . && git-cz",
"ct": "git-cz",
"commitlint": "commitlint --config commitlint.config.js -e -V",
"changelog-slice": "node ./changelog-tools/format-changelog.js"
},
"dependencies": {
"@micro-zoe/micro-app": "^1.0.0-alpha.10",
"@types/lodash-es": "^4.17.6",
"@types/nprogress": "^0.2.0",
"@vue/repl": "^1.3.2",
"commitizen": "^4.2.4",
"conventional-changelog-config-spec": "^2.1.0",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^6.3.0",
"lowdb": "^3.0.0",
"nprogress": "^0.2.0",
"pinia": "^2.0.13",
"replace": "^1.2.1",
"rollup-plugin-visualizer": "^5.9.0",
"sass": "^1.50.1",
"sass-loader": "^12.6.0",
"standard-version": "^9.3.2",
"type-fest": "^2.12.1",
"typed.js": "^2.0.132",
"vite-plugin-html": "^3.2.0",
"vue": "^3.2.25",
"vue-i18n": "^9.2.0-beta.35",
"vue-router": "^4.0.11"
},
"devDependencies": {
"@arco-design/web-vue": "^2.25.0",
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/jest": "^27.4.1",
"@types/node": "^16.6.2",
"@typescript-eslint/eslint-plugin": "^5.20.0",
"@typescript-eslint/parser": "^5.20.0",
"@vitejs/plugin-vue": "^2.2.0",
"@vue/compiler-sfc": "^3.0.5",
"@vue/test-utils": "^2.0.0-rc.21",
"@vue/vue3-jest": "^27.0.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.4.0",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"ts-jest": "^27.1.4",
"typescript": "^4.5.4",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.8.0",
"vue-tsc": "^0.29.8",
"zone.js": "~0.11.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"standard-version": {
"skip": {
"tag": true
},
"scripts": {
"postchangelog": "yarn run changelog-slice"
}
}
}