-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.57 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.57 KB
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
71
72
73
74
75
76
77
{
"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": "eslint --cache --max-warnings=0 .",
"lint:js:fix": "eslint --cache --max-warnings=0 --fix .",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
"prepare": "husky || echo 'Failed to install husky'",
"test:e2e": "pnpm run test:e2e:build:directus && pnpm run test:e2e:build:dash && pnpm run test:e2e:run",
"test:e2e:build:directus": "./scripts/build-directus.sh",
"test:e2e:build:dash": "dotenv -e test/e2e/globalping-dash-directus/.env.scripts.e2e -- pnpm build",
"test:e2e:run": "cd test/e2e/globalping-dash-directus; pnpm exec playwright test --grep-invert='.*generate-test\\.spec\\.ts' || E=$?; cd ../../../; exit $E;"
},
"dependencies": {
"@directus/sdk": "^19.1.0",
"@nuxtjs/google-fonts": "^3.2.0",
"@nuxtjs/tailwindcss": "^6.14.0",
"@pinia/nuxt": "^0.11.3",
"@primevue/forms": "4.5.4",
"@primevue/nuxt-module": "4.5.4",
"@primevue/themes": "4.5.4",
"@vueuse/core": "^14.1.0",
"@vueuse/nuxt": "^14.1.0",
"chart.js": "^4.5.1",
"lodash": "^4.17.21",
"nuxt": "^4.2.2",
"nuxt3-interpolation": "^1.0.16",
"pinia": "^3.0.4",
"primeicons": "^7.0.0",
"primevue": "4.5.4",
"relative-day-utc": "^1.3.0",
"tailwindcss": "^3.4.17",
"tailwindcss-primeui": "^0.6.1",
"vue": "^3.5.26",
"vue-country-flag-next": "^2.3.2",
"vue-router": "^4.6.4"
},
"devDependencies": {
"@martin-kolarik/eslint-config": "^8.0.4",
"@martin-kolarik/stylelint-config": "^3.0.0",
"@nuxt/eslint-config": "^1.12.1",
"@types/google.maps": "^3.58.1",
"@types/lodash": "^4.17.21",
"@types/node": "^25.0.3",
"dotenv-cli": "^11.0.0",
"eslint": "^9.39.2",
"eslint-plugin-tailwindcss": "^3.18.2",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss-html": "^1.8.0",
"stylelint": "^14.16.1",
"stylelint-config-tailwindcss": "^1.0.0",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vue-tsc": "^3.2.1"
},
"lint-staged": {
"*.{css,less,vue}": "stylelint --fix --config .stylelintrc",
"*.{cjs,js,json,ts,vue}": "eslint --cache --max-warnings=0 --fix ."
},
"pnpm": {
"patchedDependencies": {
"primevue": "patches/primevue.patch",
"@primevue/nuxt-module": "patches/@primevue__nuxt-module.patch"
}
},
"packageManager": "pnpm@9.15.2"
}