-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.04 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.04 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
{
"name": "asset-metadata",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"generate-mock-data": "screenly edge-app run --generate-mock-data",
"build:dev": "vite build --mode=development",
"build:dev:watch": "vite build --mode=development --watch",
"predev": "bun run generate-mock-data && bun run build:dev",
"dev": "run-p build:dev:watch dev:edge",
"dev:edge": "screenly edge-app run --path=dist/",
"dev:test": "vite --mode test",
"build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"test:unit": "vitest",
"test:e2e": "playwright test",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix",
"format": "prettier --write src/ README.md index.html",
"format:check": "prettier --check src/ README.md index.html",
"predeploy": "bun run build",
"deploy": "screenly edge-app deploy --path dist/",
"clear-mock-data": "rimraf mock-data.yml",
"prepare": "cd ../blueprint && bun install"
},
"prettier": "../edge-apps-library/.prettierrc.json",
"dependencies": {
"@typescript-eslint/typescript-estree": "^8.57.1",
"pinia": "^3.0.4",
"vue": "^3.5.30",
"yaml": "^2.8.2"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tsconfig/node22": "^22.0.5",
"@types/jsdom": "^28.0.0",
"@types/node": "^25.5.0",
"@vitejs/plugin-vue": "^6.0.5",
"@vitest/eslint-plugin": "^1.6.12",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.7.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.9.0",
"eslint": "^10.0.3",
"eslint-plugin-playwright": "^2.10.1",
"eslint-plugin-vue": "~10.8.0",
"jiti": "^2.6.1",
"jsdom": "^29.0.0",
"npm-run-all2": "^8.0.4",
"prettier": "3.8.1",
"rimraf": "^6.1.3",
"sass-embedded": "^1.98.0",
"typescript": "~5.9.3",
"vite": "^8.0.0",
"vite-plugin-static-copy": "^3.3.0",
"vite-plugin-vue-devtools": "^8.1.0",
"vitest": "^4.1.0",
"vue-tsc": "^3.2.6"
}
}