-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2 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
{
"name": "igem2024-bit",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "nuxi dev",
"build": "nuxi build",
"preview": "nuxi preview",
"start": "node .output/server/index.mjs",
"generate": "nuxi generate",
"postinstall": "nuxi prepare",
"check": "tsc --incremental --noEmit",
"lint": "eslint --cache .",
"lint:inspect": "eslint --inspect-config",
"format": "prettier --write --cache .",
"format-check": "prettier --check --cache ."
},
"simple-git-hooks": {
"pre-commit": "pnpm check"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts?(x)": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.1",
"@nuxt/content": "~2.13.0",
"@nuxt/image": "^1.8.1",
"@tresjs/nuxt": "^3.0.7",
"element-plus": "^2.8.4",
"swiper": "^11.1.14"
},
"devDependencies": {
"@element-plus/nuxt": "^1.0.10",
"@eslint/js": "^9.16.0",
"@nuxt/eslint-config": "^0.7.2",
"@nuxtjs/color-mode": "^3.5.1",
"@nuxtjs/tailwindcss": "^6.12.1",
"@tresjs/cientos": "^4.0.2",
"@vueuse/nuxt": "~10.11.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-vue": "^9.32.0",
"globals": "^15.13.0",
"lint-staged": "^15.2.10",
"nuxt": "~3.9.3",
"nuxt-anchorscroll": "^1.0.3",
"nuxt-aos": "^1.2.5",
"prettier": "^3.4.2",
"sass": "~1.69.5",
"simple-git-hooks": "^2.11.1",
"typescript": "~5.3.3",
"typescript-eslint": "^8.18.0",
"vue-tsc": "^2.1.10"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"webpack",
"vite",
"vue"
]
}
}
}