-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.3 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.3 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
{
"name": "web-app-skeleton",
"version": "1.1.0",
"description": "All the bits and pieces for an easy start to build your own web apps and extensions for OpenCloud.",
"license": "Apache-2.0",
"author": "OpenCloud",
"private": true,
"homepage": "https://github.com/opencloud-eu/web-app-skeleton",
"type": "module",
"scripts": {
"build": "pnpm vite build",
"build:w": "pnpm vite build --watch --mode development",
"check:types": "vue-tsc --noEmit",
"lint": "eslint 'src/**/*.{js,ts,vue}' --color",
"format:check": "prettier . --check",
"format:write": "prettier . --write",
"test:unit": "NODE_OPTIONS=--unhandled-rejections=throw vitest"
},
"devDependencies": {
"@opencloud-eu/eslint-config": "^6.1.0",
"@opencloud-eu/extension-sdk": "^6.1.0",
"@opencloud-eu/prettier-config": "^6.1.0",
"@opencloud-eu/tsconfig": "^6.1.0",
"@opencloud-eu/web-client": "^6.1.0",
"@opencloud-eu/web-pkg": "^6.1.0",
"@vue/test-utils": "^2.4.6",
"eslint": "^10.0.0",
"happy-dom": "^20.0.0",
"prettier": "^3.5.3",
"tailwindcss": "^4.0.0",
"typescript": "^5.8.2",
"vite": "^8.0.0",
"vitest": "^4.0.0",
"vue": "^3.5.13",
"vue-router": "^5.0.0",
"vue-tsc": "^3.0.0",
"vue3-gettext": "^4.0.0-beta.1"
},
"packageManager": "pnpm@10.28.1"
}