-
Notifications
You must be signed in to change notification settings - Fork 731
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.88 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.88 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "frontend",
"version": "0.5.0",
"private": true,
"scripts": {
"lint": "eslint \"src/**/*.{js,ts,vue}\" --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"build:localhost": "vite build --mode localhost",
"build:production": "vite build --mode prod",
"build:staging": "vite build --mode staging",
"start": "vite --host",
"start:dev": "vite --host",
"start:dev:local": "set -a && . ./.env.dist.local && . ./.env.override.local && set +a && vite --mode localhost --port 8081",
"docs:tailwind": "tailwind-config-viewer -o",
"docs:storybook": "storybook dev -p 6006",
"docs:storybook:build": "storybook build",
"docs": "npm run docs:tailwind & npm run docs:storybook"
},
"lint-staged": {
"**/*.{js,ts,vue}": [
"eslint --fix"
]
},
"dependencies": {
"@auth0/auth0-spa-js": "^2.1.3",
"@datadog/browser-rum": "^5.9.0",
"@linuxfoundation/lfx-ui-core": "^0.0.20",
"@nangohq/frontend": "^0.9.0",
"@sxzz/popperjs-es": "^2.11.7",
"@tailwindcss/line-clamp": "^0.4.2",
"@tanstack/vue-query": "^5.75.1",
"@tanstack/vue-query-devtools": "^5.75.1",
"@vitejs/plugin-vue": "^6.0.4",
"@vue/eslint-config-airbnb": "^7.0.0",
"@vuelidate/core": "^2.0.1",
"@vuelidate/validators": "^2.0.1",
"@vueuse/core": "^9.13.0",
"axios": "^1.13.5",
"dayjs": "^1.11.13",
"element-plus": "^2.11.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.27.5",
"lodash": "^4.17.23",
"lodash-es": "^4.18.1",
"logrocket": "^3.0.1",
"logrocket-vuex": "^0.0.3",
"marked": "^4.3.0",
"node-emoji": "^1.11.0",
"nprogress": "0.2.0",
"pinia": "^2.0.33",
"pluralize": "^8.0.0",
"qs": "^6.15.0",
"socket.io-client": "^4.8.3",
"vite": "^7.3.1",
"vue": "^3.3.1",
"vue-3-sanitize": "^0.1.4",
"vue-draggable-next": "^2.2.1",
"vue-grid-layout": "3.0.0-beta1",
"vue-router": "^4.1.6",
"vue3-click-away": "^1.2.4",
"vue3-lazyload": "^0.3.6",
"vuex": "^4.1.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@storybook/vue3": "^10.2.12",
"@storybook/vue3-vite": "^10.2.12",
"@types/pluralize": "^0.0.33",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"@vue/eslint-config-typescript": "^11.0.3",
"autoprefixer": "^10.4.14",
"dotenv": "^16.0.3",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-storybook": "^10.2.12",
"eslint-plugin-vue": "^9.33.0",
"lint-staged": "^15.4.3",
"postcss": "^8.4.21",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.80.0",
"storybook": "^10.2.12",
"tailwind-config-viewer": "^1.7.2",
"tailwindcss": "^3.2.7",
"typescript": "~5.0.4",
"unplugin-auto-import": "^0.15.2",
"unplugin-vue-components": "^0.24.1",
"@storybook/addon-docs": "^10.2.12"
}
}