-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.08 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"type": "module",
"name": "@platformatic/watt-admin",
"version": "1.3.0",
"repository": {
"url": "https://github.com/platformatic/watt-admin"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run build",
"dev": "wattpm dev",
"build": "wattpm build",
"start": "wattpm start",
"typecheck": "cd web/backend && tsc && cd ../frontend && tsc",
"client:openapi": "cd web/backend && node --experimental-strip-types utils/client.openapi.ts",
"client:generate": "massimo ./web/backend/openapi.json --name backend --folder web/frontend/src/client --language ts --frontend --full --skip-config-update --props-optional",
"test": "npm run test:cli && npm run test:e2e && npm run test:backend && npm run test:frontend",
"test:cli": "node --test --experimental-test-module-mocks --test-timeout 60000 test/*.test.ts",
"test:backend": "node --test --experimental-test-module-mocks --test-timeout 60000 --test-concurrency 1 web/backend/**/*.test.ts",
"test:frontend": "cd web/frontend && vitest run",
"ci": "npm run build && npm run lint && npm run client:openapi && npm run client:generate && npm run typecheck && npm run test",
"pretest:e2e": "playwright install chromium",
"test:e2e": "cd web/frontend && playwright test",
"test:e2e:ui": "npm run test:e2e -- --ui",
"clean": "rm -rf ./web/*/dist ./playwright-report ./test-results",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@fastify/type-provider-json-schema-to-ts": "^5.0.0",
"@fastify/websocket": "^11.2.0",
"@inquirer/prompts": "^8.0.0",
"@platformatic/control": "^3.36.0",
"@platformatic/gateway": "^3.36.0",
"@platformatic/runtime": "^3.36.0",
"@platformatic/service": "^3.36.0",
"@platformatic/ui-components": "^0.19.1",
"@platformatic/vite": "^3.11.0",
"@platformatic/wattpm-pprof-capture": "^3.36.0",
"@scalar/api-reference-react": "^0.9.0",
"@vitejs/plugin-react": "^5.0.4",
"amaro": "^1.1.4",
"autoprefixer": "^10.4.21",
"close-with-grace": "^2.3.0",
"d3": "^7.9.0",
"dayjs": "^1.11.18",
"fastify": "^5.6.1",
"json-schema-to-ts": "^3.1.1",
"pprof-format": "^2.2.1",
"react-dom": "^19.2.0",
"react-pprof": "^1.3.1",
"react-router-dom": "^7.9.3",
"react-use-websocket": "^4.13.0",
"split2": "^4.2.0",
"tailwindcss": "^4.0.0",
"undici": "^7.16.0",
"use-error-boundary": "^2.0.6",
"vite": "^7.1.9",
"vite-plugin-singlefile": "^2.3.0",
"wattpm": "^3.36.0",
"zustand": "^5.0.8"
},
"devDependencies": {
"@playwright/test": "^1.56.0",
"@types/d3": "^7.4.3",
"@types/node": "^24.0.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.1",
"@types/split2": "^4.2.3",
"@types/ws": "^8.18.1",
"eslint": "^9.37.0",
"fastify-tsconfig": "^3.0.0",
"glob": "^13.0.1",
"massimo-cli": "^1.0.1",
"neostandard": "^0.13.0",
"playwright": "^1.56.0",
"react": "^19.2.0",
"semver": "^7.7.3",
"typescript": "^5.9.3",
"vitest": "^4.0.0",
"ws": "^8.19.0"
},
"bin": {
"watt-admin": "cli.js"
}
}