-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.29 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
{
"name": "vite-demo",
"version": "0.0.1",
"homepage": "https://github.com/Kaviilee/vite-demo",
"scripts": {
"dev": "vite",
"build": "vite build",
"commit": "git-cz"
},
"dependencies": {
"vue": "^3.0.0",
"vue-router": "^4.0.0-beta.11",
"vuex": "^4.0.0-beta.4"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@googlemaps/js-api-loader": "^1.6.0",
"@types/googlemaps": "^3.40.2",
"@types/node": "^14.14.5",
"@typescript-eslint/eslint-plugin": "^4.6.0",
"@typescript-eslint/parser": "^4.6.0",
"@vitejs/plugin-vue": "^1.0.6",
"@vitejs/plugin-vue-jsx": "^1.0.2",
"@vue/compiler-sfc": "^3.0.5",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^7.0.0",
"conventional-changelog": "^3.1.24",
"eslint": "^7.12.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"google-maps": "^4.3.3",
"husky": "^4.3.0",
"less": "^3.12.2",
"prettier": "^2.2.1",
"pug": "^3.0.0",
"typescript": "^4.0.5",
"vite": "^2.0.0-beta.31"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}