-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.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
{
"name": "wscd",
"description": "Tool telling your connectivity to Wikimedia servers",
"private": true,
"version": "0.2.23",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"merge-i18n": "git submodule update && ts-node-esm ./scripts/merge-i18n.ts",
"build": "pnpm run merge-i18n && vue-tsc --noEmit && vite build",
"build:gh-pages": "pnpm run merge-i18n && vue-tsc --noEmit && vite build --config vite.config.ghpages.ts",
"preview": "vite preview",
"preview:host": "vite preview --host",
"test": "vitest",
"lint": "eslint . --ext .js,.vue,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.vue,.ts,.tsx --fix"
},
"dependencies": {
"@fontsource/inter": "^4.5.12",
"banana-i18n": "^2.3.3",
"vue": "^3.2.37"
},
"devDependencies": {
"@types/node": "^18.7.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"@vitejs/plugin-vue": "^3.0.3",
"autoprefixer": "^10.4.13",
"eslint": "^8.22.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^9.3.0",
"less": "^4.1.3",
"postcss": "^8.4.19",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"vite": "^3.1.4",
"vite-plugin-html": "^3.2.0",
"vite-plugin-pwa": "^0.13.1",
"vitest": "^0.22.1",
"vue-tsc": "^1.0.8"
}
}