-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 976 Bytes
/
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
{
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build-preview": "npm run build && npm run preview",
"check": "vue-tsc && eslint && prettier --check .",
"build": "nuxt build",
"preview": "nuxt preview"
},
"devDependencies": {
"@eslint-community/eslint-plugin-eslint-comments": "^4.4.1",
"@nuxt/devtools": "latest",
"@nuxt/eslint": "^0.7.4",
"@stylistic/eslint-plugin": "^2.12.1",
"@types/eslint": "^9.6.1",
"@types/eslint-config-prettier": "^6.11.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-es-x": "^8.4.1",
"eslint-plugin-vue-scoped-css": "^2.9.0",
"nuxt": "^3.15.1",
"prettier": "3.4.2",
"sass-embedded": "^1.83.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0",
"vue": "^3.5.13",
"vue-router": "^4.5.0",
"vue-tsc": "^2.2.0"
},
"dependencies": {
"axios": "^1.7.8",
"vue-turnstile": "^1.0.11"
}
}