-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.29 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
{
"name": "@ec-nordbund/verwaltung",
"version": "0.0.0",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/EC-Nordbund/EC-Verwaltung-next.git"
},
"author": {
"name": "EC-Nordbund",
"url": "https://www.ec-nordbund.de",
"email": "[email protected]"
},
"scripts": {
"v:dev": "vite",
"v:build": "vite build",
"v:types": "vue-tsc -p ./verwaltung/tsconfig.json",
"v:lint": "eslint . --ext .ts,.vue,.js",
"v:lint:fix": "eslint . --ext .ts,.vue,.js --fix",
"v:fmt:check": "prettier . --check",
"v:fmt": "prettier . --write",
"a:dev": "deno run --no-check=remote --unstable -A --importmap=./api/importmap.json ./api/mod.ts",
"a:build": "deno compile --no-check=remote --unstable -A --importmap=./api/importmap.json ./api/mod.ts",
"a:fmt:check": "cd api && deno fmt --check --config=deno.json",
"a:fmt": "cd api && deno fmt --config=deno.json",
"a:lint": "cd api && deno lint --config=deno.json",
"a:routes": "cd api && deno run -A ./createRoutes.ts",
"build": "pnpm v:build && pnpm a:build && pnpm v:types",
"fmt": "pnpm v:fmt && pnpm a:fmt",
"fmt:check": "pnpm v:fmt:check && pnpm a:fmt:check",
"lint": "pnpm v:lint && pnpm a:lint",
"lint:fix": "pnpm v:lint:fix && pnpm a:lint",
"types": "pnpm v:types",
"up@v": "pnpm i vuetify@npm:@vuetify/nightly@next"
},
"license": "GPL3",
"bugs": {
"url": "https://github.com/EC-Nordbund/EC-Verwaltung-next/issues"
},
"homepage": "https://github.com/EC-Nordbund/EC-Verwaltung-next#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.12.1",
"@typescript-eslint/parser": "5.12.1",
"@vitejs/plugin-vue": "2.2.2",
"eslint": "8.10.0",
"eslint-config-prettier": "8.4.0",
"eslint-plugin-vue": "8.5.0",
"prettier": "2.5.1",
"sass": "1.49.9",
"typescript": "4.5.5",
"unplugin-vue-components": "0.17.21",
"vite": "2.8.4",
"vite-plugin-inspect": "0.4.3",
"vite-plugin-pages": "0.20.2",
"vite-plugin-server": "0.1.2",
"vue-eslint-parser": "8.3.0",
"vue-tsc": "0.32.0"
},
"dependencies": {
"@mdi/js": "6.5.95",
"@vueuse/core": "7.7.0",
"jose": "4.5.1",
"vue": "3.2.31",
"vue-router": "4.0.12",
"vuetify": "npm:@vuetify/[email protected]"
}
}