-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·49 lines (49 loc) · 1.63 KB
/
package.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.63 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
{
"name": "plugin-starter",
"version": "0.1.0",
"sideEffects": true,
"type": "module",
"main": "build.js",
"scripts": {
"build": "node build.js",
"build:dev": "node dev-build.js",
"dev": "node watch.js",
"start": "serve dist -l 5500",
"start:dev": "serve .dev -l 5500",
"test": "node scripts/run-tests.mjs",
"test:coverage": "node scripts/run-tests.mjs --coverage"
},
"keywords": ["plugin", "flitware", "pluginstarter", "starter", "template", "react", "typescript", "esbuild", "cloudscape", "microfrontend", "micro-frontend", "microkernel", "micro-kernel"],
"author": "Flitware",
"website": "https://flitware.com",
"license": "MIT",
"description": "A ready-to-use plugin starter with preconfigured environment, tooling, and best practices for building plugins.",
"dependencies": {
"@cloudscape-design/collection-hooks": "^1.0.90",
"@cloudscape-design/components": "^3.0.1284",
"@cloudscape-design/global-styles": "^1.0.57",
"@tanstack/react-table": "^8.21.3",
"flux-proxy": "^0.2.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-infinite-scroll-component": "^6.1.0",
"react-router-dom": "7.6.3"
},
"devDependencies": {
"@types/csso": "5.0.4",
"@types/node": "24.0.10",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"chokidar": "4.0.3",
"csso": "5.0.5",
"esbuild": "0.25.5",
"esbuild-plugin-inline-import": "1.1.0",
"html-minifier-terser": "7.2.0",
"javascript-obfuscator": "4.1.1",
"live-server": "1.2.0",
"pocketbase": "0.26.1",
"serve": "14.2.4",
"ts-node": "10.9.2",
"typescript": "5.8.3"
}
}