-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
73 lines (73 loc) · 1.92 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
{
"name": "@d2-projects/d2-advance",
"version": "2.1.2",
"private": true,
"license": "MIT",
"scripts": {
"serve": "vite",
"build": "vite build",
"preview": "vite build && vite preview",
"build:report": "vite build --mode=report",
"lint": "eslint . --ext .js,.ts,.vue",
"type": "vue-tsc",
"commit": "git-cz",
"release": "standard-version",
"test:unit": "echo TODO",
"prepare": "husky install"
},
"dependencies": {
"@icon-park/vue-next": "^1.3.1",
"axios": "^0.21.1",
"miragejs": "^0.1.41",
"vue": "^3.0.7",
"vue-router": "^4.0.5",
"vuex": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/node": "^14.14.35",
"@types/rollup-plugin-visualizer": "^2.6.0",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vitejs/plugin-legacy": "^1.3.1",
"@vitejs/plugin-vue": "^1.1.5",
"@vue/compiler-sfc": "^3.0.7",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.22.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.5.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"rollup-plugin-visualizer": "^4.2.0",
"standard-version": "^9.1.1",
"typescript": "~4.2.3",
"vite": "^2.1.1",
"vite-plugin-compression": "^0.2.3",
"vite-plugin-windicss": "^0.8.4",
"vite-tsconfig-paths": "^2.3.0",
"vue-tsc": "^0.0.13"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": "eslint --fix "
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"standard-version": {
"infile": "docs/CHANGELOG.md"
},
"browserslist": [
"defaults"
]
}