forked from frappe/press
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.41 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": "dashboard",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "yarn generate-theme-config && vite",
"build": "yarn generate-theme-config && vite build --base=/assets/press/dashboard/ && yarn copy-html-entry && yarn copy-html-entry2",
"copy-html-entry": "cp ../press/public/dashboard/index.html ../press/www/dashboard.html",
"copy-html-entry2": "cp ../press/public/dashboard/dashboard-beta.html ../press/www/dashboard-beta.html",
"generate-theme-config": "node ./generateThemeConfig.cjs",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint src"
},
"dependencies": {
"@headlessui/vue": "^1.7.14",
"@popperjs/core": "^2.11.2",
"@sentry/tracing": "^7.15.0",
"@sentry/vue": "^7.15.0",
"@stripe/stripe-js": "^1.3.0",
"@tailwindcss/container-queries": "^0.1.1",
"@vueuse/components": "^10.7.0",
"@vueuse/core": "^10.3.0",
"core-js": "^3.6.4",
"dayjs": "^1.10.7",
"echarts": "^5.4.3",
"feather-icons": "^4.26.0",
"frappe-charts": "2.0.0-rc22",
"frappe-ui": "^0.1.26",
"fuse.js": "6.6.2",
"libarchive.js": "^1.3.0",
"lodash": "^4.17.19",
"luxon": "^1.22.0",
"markdown-it": "^12.3.2",
"posthog-js": "^1.58.0",
"register-service-worker": "^1.6.2",
"socket.io-client": "^4.5.1",
"unplugin-icons": "^0.17.0",
"unplugin-vue-components": "^0.25.2",
"vue": "^3.3.4",
"vue-echarts": "^6.6.1",
"vue-router": "^4.0.5",
"vue-sonner": "^0.4.4"
},
"devDependencies": {
"@iconify/json": "^2.2.123",
"@tailwindcss/forms": "^0.4.0",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@tailwindcss/typography": "^0.5.1",
"@vitejs/plugin-legacy": "^4.1.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/compiler-sfc": "^3.1.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^2.0.0-rc.19",
"autoprefixer": "^10.4.2",
"babel-eslint": "^10.0.3",
"c8": "^7.11.0",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"jsdom": "^19.0.0",
"lint-staged": "^9.5.0",
"msw": "^0.36.8",
"node-fetch": "^3.2.10",
"postcss": "^8.4.6",
"postcss-easy-import": "^4.0.0",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.8",
"tailwindcss": "^3.2",
"vite": "^5.0.12",
"vite-plugin-rewrite-all": "^1.0.1",
"vitest": "^0.9.3",
"yorkie": "^2.0.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"yarn lint",
"git add"
]
}
}