-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.52 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
{
"name": "3d-earth",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"serve": "vite",
"build": "vite build",
"build:dev": "vue-tsc && vite build --mode development",
"build:test": "vue-tsc && vite build --mode test",
"build:prod": "vue-tsc && vite build --mode production",
"preview": "npm run build:dev && vite preview",
"lint:eslint": "eslint ./src --ext .vue,.js,.ts,.jsx,.tsx --fix",
"lint:style": "stylelint \"./**/*.{css,less,vue,html}\" --fix",
"prepare": "husky install",
"commit": "git add -A && czg && git push",
"release": "standard-version"
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"dependencies": {
"vue": "^3.2.47"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.4",
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@vitejs/plugin-vue": "^4.1.0",
"cz-git": "^1.6.1",
"czg": "^1.6.1",
"eslint": "^8.38.0",
"eslint-plugin-vue": "^9.11.0",
"husky": "^8.0.3",
"postcss": "^8.4.22",
"postcss-html": "^1.5.0",
"standard-version": "^9.5.0",
"stylelint": "^15.5.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recess-order": "^4.0.0",
"stylelint-config-recommended-scss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.4.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^8.0.0",
"vite": "^4.2.0"
}
}