-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 3.48 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 3.48 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
{
"name": "@servicestack/react",
"version": "3.0.134",
"repository": {
"type": "git",
"url": "https://github.com/ServiceStack/servicestack-react"
},
"private": false,
"files": [
"dist"
],
"type": "module",
"module": "./dist/servicestack-react.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/servicestack-react.mjs",
"require": "./dist/servicestack-react.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only build-style && run-p build-minify",
"build-minify": "uglifyjs dist/servicestack-react.mjs --compress --mangle --webkit -o dist/servicestack-react.min.mjs",
"build-style": "postcss src/tailwind.css -o dist/styles.css",
"build-copy": "npm run build && npm run copy-src && npm run copy-blazor-react && npm run copy-llms",
"copy-src": "shx cp dist/servicestack-react.min.mjs ../ServiceStack/ServiceStack/src/ServiceStack/js/servicestack-react.mjs && shx cp dist/servicestack-react.mjs ../ServiceStack/ServiceStack/tests/NorthwindAuto/wwwroot/lib/mjs/servicestack-react.mjs",
"copy-llms": "shx cp dist/servicestack-react.min.mjs ../llms/llms/ui/lib/servicestack-react.mjs",
"copy-diffusion": "shx cp dist/servicestack-react.m* ../../netcore/BlazorDiffusionReact/BlazorDiffusion/wwwroot/lib/mjs/ && shx cp dist/index.d.ts ../../netcore/BlazorDiffusionReact/BlazorDiffusion/wwwroot/lib/typings/@servicestack/react/",
"copy-creatorkit": "shx cp dist/servicestack-react.m* ../../netcore/CreatorKit/CreatorKit/wwwroot/lib/mjs/ && shx cp dist/index.d.ts ../../netcore/CreatorKit/CreatorKit/wwwroot/lib/typings/@servicestack/react/",
"copy-comfy": "shx cp dist/servicestack-react.m* ../ubixar.com/MyApp/wwwroot/lib/mjs/ && shx cp dist/index.d.ts ../ubixar.com/MyApp/wwwroot/lib/typings/@servicestack/react/ && shx cp dist/servicestack-react.min.mjs ../ubixar.com/MyApp/wwwroot/js/servicestack-react.mjs",
"copy-blazor-react": "shx mkdir -p ../../NetCoreTemplates/blazor-react/MyApp/wwwroot/js/ && shx cp dist/servicestack-react.m* ../../NetCoreTemplates/blazor-react/MyApp/wwwroot/js/ && shx cp dist/servicestack-react.m* ../../NetCoreTemplates/blazor-react/MyApp/wwwroot/lib/mjs/ && shx cp dist/index.d.ts ../../NetCoreTemplates/blazor-react/MyApp/wwwroot/lib/typings/@servicestack/react/",
"preview": "vite preview",
"build-only": "vite build -l error",
"type-check": "tsc --noEmit",
"test": "vitest",
"update-deps": "npx npm-check-updates -u && npm install",
"bump": "npx bump && git add . && git commit -m 'bump version' && git push && git push --tags"
},
"dependencies": {
"@servicestack/client": "^2.1.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^7.1.3"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.16",
"@testing-library/react": "^16.1.0",
"@types/node": "^24.9.2",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@vitejs/plugin-react": "^4.3.4",
"@vitest/browser": "^4.0.6",
"@vitest/browser-playwright": "^4.0.6",
"autoprefixer": "^10.4.21",
"jsdom": "^27.1.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.56.1",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"shx": "^0.4.0",
"tailwindcss": "^4.1.16",
"typescript": "~5.9.3",
"uglify-js": "^3.19.3",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.6",
"webdriverio": "^9.20.0"
}
}