-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.13 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.13 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
{
"name": "@newlogic-digital/start",
"type": "module",
"version": "0.1.0",
"author": "New Logic Studio s.r.o.",
"scripts": {
"postinstall": "npx ncu",
"dev": "npx vite",
"build": "npx vite build --emptyOutDir",
"preview": "npx vite preview",
"eslint": "npx eslint '**/*.{js,ts,vue}'",
"eslint-fix": "npx eslint '**/*.{js,ts,vue}' --fix",
"stylelint": "npx stylelint './src/styles/**/*.css'",
"stylelint-fix": "npx stylelint './src/styles/**/*.css' --fix",
"npm-update": "ncu -u && npm update",
"npm-sort": "npm r -S example && npm r -D example",
"tsc": "npx vue-tsc -b",
"lint": "npm run eslint && npm run stylelint && npm run tsc"
},
"dependencies": {
"@floating-ui/dom": "^1.7.2",
"@newlogic-digital/utils-js": "^1.2.0",
"@pinia/colada": "^0.17.1",
"@sentry/integrations": "^7.114.0",
"@sentry/tracing": "^7.120.3",
"@sentry/vue": "^9.34.0",
"@vueuse/core": "^13.4.0",
"openapi-fetch": "^0.14.0",
"pinia": "^3.0.3",
"reka-ui": "^2.3.1",
"slide-element": "^2.3.1",
"vue": "^3.5.17",
"vue-i18n": "^11.1.7",
"vue-router": "^4.5.1",
"winduum": "^2.2.7"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^6.0.8",
"@stylistic/eslint-plugin": "^5.1.0",
"@stylistic/stylelint-config": "^2.0.0",
"@tailwindcss/language-server": "^0.14.23",
"@tailwindcss/vite": "^4.1.11",
"@types/node": "^24.0.8",
"@vitejs/plugin-vue": "^6.0.0",
"@vue/tsconfig": "^0.7.0",
"browserslist": "^4.25.1",
"browserslist-to-esbuild": "^2.1.1",
"eslint-plugin-vue": "^10.2.0",
"globals": "^16.3.0",
"lightningcss": "^1.30.1",
"npm-check-updates": "^18.0.1",
"openapi-typescript": "^7.8.0",
"stylelint-config-standard": "^38.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"unplugin-vue-components": "^28.8.0",
"unplugin-vue-router": "^0.14.0",
"vite": "npm:rolldown-vite@latest",
"vue-tsc": "^2.2.10"
},
"browserslist": [
"> 1%",
"last 2 major versions",
"not kaios > 0",
"not dead"
],
"engines": {
"node": ">=22.0.0",
"npm": ">=11.0.0"
}
}