-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.03 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
{
"private": true,
"main": "index.js",
"author": "高江华 <[email protected]>",
"license": "MIT",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"postinstall": "husky install",
"lint:js": "eslint --ext \".ts,.vue\" --ignore-path .gitignore .",
"lint:prettier": "prettier --check .",
"lint": "yarn lint:js && yarn lint:prettier",
"lintfix": "prettier --write --list-different . && yarn lint:js --fix"
},
"devDependencies": {
"@antfu/eslint-config": "^0.34.1",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@nuxtjs/tailwindcss": "^6.2.0",
"commitizen": "^4.2.6",
"cz-git": "^1.4.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tailwindcss": "^3.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"nuxt": "^3.6.3",
"postcss-px-to-viewport": "^1.1.1",
"prettier": "^2.8.3",
"typescript": "^4.9.4"
},
"dependencies": {
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@pinia/nuxt": "^0.4.6",
"@types/dat.gui": "^0.7.13",
"@vueuse/core": "^10.3.0",
"@vueuse/nuxt": "^10.3.0",
"cesium": "^1.116.0",
"daisyui": "^2.47.0",
"dat.gui": "^0.7.9",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-nuxt": "^4.0.0",
"gsap": "^3.12.5",
"pinia": "^2.0.28",
"postcss-custom-properties": "^13.2.1",
"sass": "^1.57.1",
"three": "^0.163.0"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": [
"eslint --fix --ext"
],
"*.vue": [
"eslint --fix --ext"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}