-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.31 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
{
"name": "@escalated-dev/escalated",
"version": "0.7.0",
"description": "Vue 3 + Inertia.js UI components for Escalated \u00e2\u20ac\u201d the embeddable support ticket system",
"author": "Escalated Dev <hello@escalated.dev>",
"license": "MIT",
"homepage": "https://github.com/escalated-dev/escalated",
"repository": {
"type": "git",
"url": "https://github.com/escalated-dev/escalated.git"
},
"keywords": [
"vue",
"inertia",
"support",
"tickets",
"helpdesk",
"escalated"
],
"type": "module",
"exports": {
"./components/*": "./src/components/*",
"./pages/*": "./src/pages/*",
"./locales": "./src/locales/index.js",
"./locales/*": "./src/locales/*",
".": "./src/index.js"
},
"files": [
"src"
],
"peerDependencies": {
"@inertiajs/vue3": "^1.0.0 || ^2.0.0",
"vue": "^3.3.0"
},
"scripts": {
"test": "vitest run",
"lint": "eslint src/ --max-warnings 0",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"prepare": "husky",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"screenshot": "npx playwright test --config=playwright-screenshots.config.js",
"demo:serve": "node scripts/demo-server.js",
"demo:record": "node scripts/generate-demo.js",
"demo": "concurrently -k -s second \"npm run demo:serve\" \"wait-on http://localhost:3000 && npm run demo:record\""
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@inertiajs/vue3": "^2.0.0",
"@playwright/test": "^1.50.0",
"@storybook/addon-a11y": "^10.2.12",
"@storybook/addon-docs": "^10.2.12",
"@storybook/vue3-vite": "^10.2.12",
"@vitejs/plugin-vue": "^5.0.0",
"@vue/test-utils": "^2.4.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.0",
"eslint": "^10.0.1",
"eslint-plugin-storybook": "^10.2.12",
"eslint-plugin-vue": "^10.8.0",
"happy-dom": "^15.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"playwright": "^1.50.0",
"postcss": "^8.5.0",
"prettier": "^3.8.1",
"storybook": "^10.2.12",
"tailwindcss": "^3.4.0",
"vitest": "^2.0.0",
"vue": "^3.5.0",
"wait-on": "^8.0.0"
}
}