-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.9 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 2.9 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@naap-platform/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "./bin/start.sh --all",
"start:quick": "./bin/start.sh",
"dev": "./bin/start.sh",
"stop": "./bin/stop.sh",
"restart": "./bin/start.sh restart",
"status": "./bin/start.sh status",
"validate": "./bin/start.sh validate",
"build": "nx run-many --target=build --all",
"build:plugins": "./bin/build-plugins.sh",
"ci-check": "./bin/pre-push-validate.sh",
"ci-check:full": "./bin/pre-push-validate.sh --full",
"test": "nx run-many --target=test --all",
"lint": "nx run-many --target=lint --all",
"postinstall": "node bin/bootstrap-workspace-packages.cjs",
"smoke": "./bin/smoke.sh",
"e2e:plugin-publisher": "./bin/e2e-plugin-publisher.sh",
"e2e:plugin-publisher:cleanup": "npx tsx bin/cleanup-published-examples.ts",
"db:setup": "./bin/db-setup.sh",
"db:seed": "./bin/db-seed.sh",
"db:reset": "./bin/db-reset.sh",
"db:migrate": "./bin/db-migrate.sh",
"db:cleanup-moved-plugins": "npx tsx bin/cleanup-moved-plugins.ts",
"infra:start": "./bin/start.sh --infra",
"plugin:list": "./bin/start.sh list",
"logs": "./bin/start.sh logs"
},
"private": true,
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"dependencies": {
"framer-motion": "^12.0.0",
"lucide-react": "^0.575.0",
"mitt": "^3.0.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-router-dom": "^7.0.0",
"recharts": "^2.15.0"
},
"optionalDependencies": {
"@rollup/rollup-darwin-arm64": "^4.59.0"
},
"devDependencies": {
"@nx/js": "^22.6.5",
"@nx/node": "^22.6.5",
"@nx/react": "^22.6.5",
"@nx/vite": "^22.6.5",
"@nx/web": "^22.6.5",
"@rollup/plugin-terser": "1.0.0",
"@swc-node/register": "~1.11.1",
"@swc/core": "1.15.18",
"@swc/helpers": "^0.5.19",
"@types/node": "^20.19.35",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^6.0.1",
"autoprefixer": "^10.4.27",
"next": "15.5.15",
"nx": "^22.6.5",
"postcss": "^8.4.49",
"prettier": "~3.8.1",
"puppeteer": "^24.37.2",
"tailwindcss": "^3.4.15",
"tslib": "^2.3.0",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "8.0.8",
"vitest": "4.1.4"
},
"overrides": {
"axios": "^1.15.0",
"esbuild": "0.28.0",
"vite": "8.0.8",
"vitest": "4.1.4",
"minimatch": "10.2.5",
"eslint-plugin-import": {
"minimatch": "10.2.5"
},
"eslint-plugin-jsx-a11y": {
"minimatch": "10.2.5"
},
"eslint-plugin-react": {
"minimatch": "10.2.5"
},
"@typescript-eslint/typescript-estree": {
"minimatch": "10.2.5"
}
},
"packageManager": "npm@10.9.4",
"workspaces": [
"packages/*",
"apps/*",
"apps/workflows/*",
"services/*",
"services/workflows/*",
"plugins/*/frontend",
"plugins/*/backend"
]
}