-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "a11y",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "Accessibility playground.",
"author": "Lee Crosby",
"license": "MIT",
"homepage": "https://github.com/its-lee/a11y",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "prettier . --check && eslint --ext .js,.ts,.vue --no-fix .",
"typecheck": "tsc && vue-tsc",
"spellcheck": "cspell lint"
},
"dependencies": {
"vue": "^3.3.4",
"vue-router": "^4.2.5"
},
"devDependencies": {
"@types/webfontloader": "^1.6.34",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^11.0.2",
"autoprefixer": "^10.4.13",
"cspell": "^8.3.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-todos": "^0.1.0",
"eslint-plugin-vue": "^9.11.0",
"eslint-plugin-vue-i18n-ex": "^2.0.4",
"prettier": "^2.2.1",
"sass": "^1.44.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vue-tsc": "^1.8.20",
"webfontloader": "^1.6.28"
}
}