-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.19 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.19 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
{
"name": "@ecamp3/backend-print",
"private": true,
"type": "module",
"scripts": {
"dev": "NODE_OPTIONS='--max-http-header-size=128000' nuxt dev",
"dev-debug": "NODE_OPTIONS='--max-http-header-size=128000' node --inspect node_modules/.bin/nuxt",
"build": "nuxt build",
"start": "NODE_OPTIONS='--max-http-header-size=128000' nuxt start",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --fix .",
"lint:prettier": "prettier --write --ignore-path .gitignore **/*.{css,scss,json,md}",
"lint:check": "npm run lint:check:eslint && npm run lint:check:prettier",
"lint:check:eslint": "eslint .",
"lint:check:prettier": "prettier --check --ignore-path .gitignore **/*.{css,scss,json,md}",
"test": "vitest run --coverage"
},
"dependencies": {
"@jamescoyle/vue-icon": "0.1.2",
"@mdi/js": "7.4.47",
"@sentry/node": "10.43.0",
"axios": "1.13.6",
"colorjs.io": "0.6.1",
"dayjs": "1.11.19",
"deepmerge": "4.3.1",
"hal-json-vuex": "3.0.0-alpha.10",
"isomorphic-dompurify": "3.3.0",
"lodash-es": "4.17.23",
"puppeteer-core": "24.39.0",
"runes": "0.4.3",
"vuex": "4.1.0"
},
"devDependencies": {
"@eslint/compat": "2.0.3",
"@eslint/js": "9.39.4",
"@nuxt/eslint": "1.15.2",
"@nuxt/eslint-config": "1.15.2",
"@nuxtjs/i18n": "10.2.3",
"@nuxtjs/tailwindcss": "6.14.0",
"@tailwindcss/typography": "0.5.19",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@vitest/coverage-v8": "4.0.18",
"@vue/compiler-dom": "3.5.30",
"@vue/compiler-sfc": "3.5.30",
"@vue/runtime-dom": "3.5.30",
"@vue/server-renderer": "3.5.30",
"@vue/shared": "3.5.30",
"@vue/test-utils": "2.4.6",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-local-rules": "3.0.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-vue": "10.6.2",
"eslint-plugin-vue-scoped-css": "2.12.0",
"globals": "17.4.0",
"nuxt": "4.3.1",
"prettier": "3.8.1",
"sass": "1.82.0",
"vite-plugin-eslint2": "5.0.5",
"vite-svg-loader": "5.1.1",
"vitest": "4.0.18",
"vue": "3.5.30"
},
"overrides": {
"uri-js": "npm:uri-js-replace"
}
}