-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.18 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": "globalping-dash",
"private": true,
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
"generate": "nuxt generate",
"lint": "pnpm lint:css && pnpm lint:js",
"lint:fix": "pnpm lint:css:fix && pnpm lint:js:fix",
"lint:css": "stylelint --config .stylelintrc \"./**/*.{css,vue}\"",
"lint:css:fix": "stylelint --fix --config .stylelintrc \"./**/*.{css,vue}\"",
"lint:js": "cross-env ESLINT_USE_FLAT_CONFIG=0 eslint --cache --max-warnings=0 .",
"lint:js:fix": "cross-env ESLINT_USE_FLAT_CONFIG=0 eslint --cache --max-warnings=0 --fix .",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky || echo 'Failed to install husky'"
},
"dependencies": {
"@directus/sdk": "^17.0.2",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/tailwindcss": "^6.12.1",
"@pinia/nuxt": "^0.5.4",
"@primevue/nuxt-module": "^4.0.7",
"@primevue/themes": "^4.0.7",
"@vueuse/core": "^11.1.0",
"@vueuse/nuxt": "^11.1.0",
"chart.js": "^4.4.4",
"eslint-plugin-import": "^2.30.0",
"lodash": "^4.17.21",
"nuxt": "^3.13.2",
"nuxt-icons": "^3.2.1",
"pinia": "^2.2.2",
"primeicons": "^7.0.0",
"primevue": "^4.0.7",
"tailwindcss": "^3.4.12",
"tailwindcss-primeui": "^0.3.4",
"vue": "^3.5.8",
"vue-country-flag-next": "^2.3.2",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@martin-kolarik/eslint-config": "^7.3.2",
"@martin-kolarik/stylelint-config": "^3.0.0",
"@nuxt/eslint-config": "^0.3.13",
"@types/google.maps": "^3.58.0",
"@types/lodash": "^4.17.7",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-plugin-tailwindcss": "^3.17.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss-html": "^1.7.0",
"stylelint": "^14.16.1",
"stylelint-config-tailwindcss": "^0.0.7",
"typescript": "^5.5.4",
"vite": "^5.4.7",
"vue-tsc": "^2.1.6"
},
"lint-staged": {
"*.{css,less,vue}": "stylelint --fix --config .stylelintrc",
"*.{cjs,js,json,ts,vue}": "cross-env ESLINT_USE_FLAT_CONFIG=0 eslint --cache --max-warnings=0 --fix ."
},
"pnpm": {
"patchedDependencies": {
"@primevue/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}