-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.35 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.35 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
{
"name": "rss-reader-app",
"version": "1.0.0",
"devDependencies": {
"@playwright/test": "^1.58.0",
"@screenly/edge-apps": "^1.0.0",
"@types/bun": "^1.3.13",
"@types/jsdom": "^28.0.1",
"bun-types": "^1.3.13",
"jsdom": "^29.0.2",
"npm-run-all2": "^8.0.4",
"prettier": "^3.8.3",
"typescript": "^6.0.3"
},
"prettier": "./.prettierrc.json",
"scripts": {
"prebuild": "bun run type-check",
"generate-mock-data": "screenly edge-app run --generate-mock-data",
"predev": "bun run generate-mock-data",
"cors-proxy-server": "edge-apps-scripts cors-proxy",
"dev": "run-p cors-proxy-server edge-apps-dev",
"edge-apps-dev": "edge-apps-scripts dev",
"build": "edge-apps-scripts build",
"build:dev": "edge-apps-scripts build:dev",
"build:prod": "edge-apps-scripts build",
"test": "bun test --pass-with-no-tests src/",
"test:unit": "bun test --pass-with-no-tests src/",
"lint": "edge-apps-scripts lint --fix",
"format": "prettier --write src/ README.md index.html",
"format:check": "prettier --check src/ README.md index.html",
"deploy": "bun run build && screenly edge-app deploy --path=dist/",
"type-check": "edge-apps-scripts type-check",
"screenshots": "edge-apps-scripts screenshots"
},
"type": "module",
"dependencies": {
"@rowanmanning/feed-parser": "^2.1.3"
}
}