-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.79 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.79 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
{
"name": "yorksu-vue-3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rollup -c rollup.config.mjs",
"dev": "node dev-server.mjs",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"build-css": "npx @tailwindcss/cli -i ./src/main.css -o ./dist/components.css --minify",
"prepare": "husky",
"test-storybook": "test-storybook",
"new": "node utils/component-cli.cjs"
},
"keywords": [],
"author": "University of York Students' Union Digital Team <[email protected]>",
"license": "ISC",
"devDependencies": {
"@chromatic-com/storybook": "^4.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.0",
"@storybook/addon-coverage": "^2.0.0",
"@storybook/addon-docs": "^9.0.18",
"@storybook/addon-links": "^9.0.18",
"@storybook/addon-themes": "^9.0.18",
"@storybook/builder-vite": "^9.0.18",
"@storybook/test-runner": "^0.23.0",
"@storybook/vue3-vite": "^9.0.18",
"@storybook/web-components-vite": "^9.0.18",
"autoprefixer": "^10.4.19",
"axe-playwright": "^2.0.1",
"chromatic": "^13.1.2",
"connect": "^3.7.0",
"cors": "^2.8.5",
"cssnano": "^7.0.1",
"eslint": "^9.3.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-storybook": "9.1.5",
"glob": "^11.0.0",
"globals": "^16.3.0",
"handlebars": "^4.7.8",
"husky": "^9.0.11",
"lint-staged": "^16.1.2",
"postcss": "^8.4.38",
"postcss-cli": "^11.0.0",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.6.14",
"rollup": "^4.22.4",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-vue": "^6.0.0",
"serve-static": "^2.2.0",
"shadow-dom-testing-library": "^1.11.2",
"storybook": "^9.0.18",
"tailwindcss": "^4.1.11"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^7.0.0",
"@fortawesome/free-brands-svg-icons": "^7.0.0",
"@fortawesome/free-regular-svg-icons": "^7.0.0",
"@fortawesome/free-solid-svg-icons": "^7.0.0",
"@fortawesome/vue-fontawesome": "^3.0.8",
"@rollup/plugin-alias": "^5.1.0",
"@storybook/addon-a11y": "^9.0.18",
"@storybook/addon-docs": "^9.0.18",
"@tailwindcss/cli": "^4.1.11",
"@tailwindcss/postcss": "^4.1.11",
"@vitejs/plugin-vue": "^6.0.1",
"axios": "^1.7.4",
"commander": "^14.0.0",
"dayjs": "^1.11.13",
"echarts": "^5.5.1",
"eslint-plugin-vue": "^10.3.0",
"http-proxy-middleware": "^3.0.3",
"mapbox-gl": "^3.6.0",
"vue-component-meta": "^3.0.4",
"vue-select": "^4.0.0-beta.6",
"vueperslides": "^3.6.0"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*": "prettier --write src/"
}
}