-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
73 lines (73 loc) · 2.79 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
68
69
70
71
72
73
{
"name": "frontend",
"version": "1.0.0",
"engines": {
"node": ">=22"
},
"description": "webstatus.dev frontend",
"main": "index.js",
"type": "module",
"scripts": {
"build": "npm run clean && tsc && npm run cp-imgs && npx rollup -c",
"clean": "rm -rf build && rm -rf static && rm -rf dist && tsc --build --clean",
"lint": "cd .. && prettier frontend/ --check && cd frontend && eslint \"**/*.{js,ts}\" && lit-analyzer \"src/**/*.{js,ts}\" && tsc --noEmit",
"lint-fix": "cd .. && prettier frontend/ --write && cd frontend && eslint \"**/*.{js,ts}\" --fix",
"local": "npm run build && TODO",
"postinstall": "./scripts/postinstall.js",
"start": "node dist/server/index.js",
"cp-imgs": "mkdir -p build/public/img && cp -v -r src/static/img/* build/public/img && cp -v .postinstall/static/img/* build/public/img",
"test": "npm run build && npm run cp-imgs && wtr --coverage",
"test:watch": "npm run build && concurrently -k --raw \"tsc --watch --preserveWatchOutput\" \"wtr --watch --coverage\" "
},
"devDependencies": {
"@browser-logos/chrome": "^2.0.0",
"@browser-logos/chrome-canary": "^2.0.0",
"@browser-logos/edge": "^2.0.7",
"@browser-logos/edge-dev": "^2.0.3",
"@browser-logos/firefox": "^3.0.10",
"@browser-logos/firefox-nightly": "^3.0.6",
"@browser-logos/safari": "^2.1.0",
"@browser-logos/safari-technology-preview": "^2.0.2",
"@esm-bundle/chai": "^4.3.4-fix.0",
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@types/chai": "^5.0.1",
"@types/mocha": "^10.0.10",
"@types/node": "^22.9.0",
"@types/webstatus.dev-backend": "file:../lib/gen/openapi/ts-webstatus.dev-backend-types",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.25.0",
"@web/dev-server-esbuild": "^1.0.4",
"@web/rollup-plugin-html": "^2.0.1",
"@web/test-runner": "^0.20.0",
"@web/test-runner-mocha": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"chai": "^5.2.0",
"cpy": "^11.1.0",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-lit": "^1.15.0",
"eslint-plugin-promise": "^7.2.1",
"lit-analyzer": "^2.0.2",
"openapi-typescript-helpers": "^0.0.15",
"playwright": "^1.51.0",
"prettier": "3.5.3",
"rollup": "^4.34.8",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-css-only": "^4.5.2",
"sinon": "^19.0.2",
"ts-lit-plugin": "^2.0.1",
"typescript": "^5.8.2"
},
"dependencies": {
"@lit/context": "^1.1.4",
"@lit/task": "^1.0.2",
"@shoelace-style/shoelace": "^2.20.0",
"@types/google.visualization": "^0.0.74",
"@vaadin/router": "^2.0.0",
"firebase": "^11.4.0",
"lit": "^3.2.1",
"openapi-fetch": "^0.13.4"
}
}