-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
85 lines (85 loc) · 2.46 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ccat-admin",
"version": "1.0.0",
"private": true,
"author": "Project contributors",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "vite",
"build": "run-p typecheck build-only",
"preview": "vite preview",
"build-only": "vite build --base=/admin/",
"typecheck": "vue-tsc --noEmit",
"e2e": "playwright test",
"e2e:ui": "playwright test show-report",
"unit": "vitest --run",
"unit:ui": "vitest --ui",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier . --write",
"fix": "run-p lint format"
},
"dependencies": {
"@casl/ability": "^6.7.1",
"@casl/vue": "^2.2.2",
"@headlessui/vue": "^1.7.22",
"@saehrimnir/druidjs": "^0.7.3",
"@tailwindcss/forms": "^0.5.7",
"@types/lodash": "^4.17.6",
"@vee-validate/rules": "^4.11.6",
"@vueuse/components": "^10.11.0",
"@vueuse/core": "^10.11.0",
"@vueuse/integrations": "^10.11.0",
"animate.css": "^4.1.1",
"apexcharts": "^3.50.0",
"axios": "^1.7.2",
"ccat-api": "github:cheshire-cat-ai/api-client-ts#develop",
"daisyui": "^4.12.10",
"highlight.js": "^11.10.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"pinia": "^2.1.7",
"remarkable": "^2.0.1",
"universal-cookie": "^6.1.3",
"vee-validate": "^4.12.6",
"vite-tsconfig-paths": "^4.3.2",
"vue": "^3.4.31",
"vue-component-type-helpers": "^2.0.26",
"vue-router": "^4.4.0",
"vue3-apexcharts": "^1.5.3"
},
"devDependencies": {
"@iconify-json/heroicons": "^1.1.21",
"@iconify-json/ph": "^1.1.13",
"@pinia/testing": "^0.1.3",
"@playwright/test": "^1.45.1",
"@rushstack/eslint-patch": "^1.10.3",
"@tsconfig/node18": "^18.2.4",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.14.10",
"@types/remarkable": "^2.0.8",
"@vitejs/plugin-vue": "^5.0.5",
"@vitest/ui": "^2.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-tailwindcss": "^3.17.4",
"eslint-plugin-vue": "^9.27.0",
"jsdom": "^24.1.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.39",
"prettier": "3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "~5.4.5",
"unplugin-auto-import": "^0.17.6",
"unplugin-fonts": "^1.1.1",
"unplugin-icons": "^0.19.0",
"unplugin-vue-components": "^0.27.2",
"vite": "^5.3.3",
"vitest": "^2.0.0",
"vue-tsc": "^2.0.26"
}
}