-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 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
{
"name": "@public-ui/sample-react",
"version": "2.2.19",
"description": "This app contains samples for the KoliBri/Public UI",
"license": "EUPL-1.2",
"repository": {
"type": "git",
"url": "https://github.com/public-ui/kolibri"
},
"scripts": {
"build": "vite build",
"build:deps": "pnpm --filter @public-ui/sample-react^... build",
"format": "prettier --check src",
"lint": "pnpm lint:eslint && pnpm lint:stylelint && pnpm lint:tsc",
"lint:eslint": "eslint src",
"lint:stylelint": "stylelint \"src/**/*.{css,scss}\"",
"lint:tsc": "tsc --noemit",
"migrate": "git reset --hard && rm -rf dist node_modules && pnpm i && npx @public-ui/kolibri-cli migrate src && sh fix.sh && pnpm start",
"prepare": "npm-run-all2 prepare:*",
"prepare:components-assets": "cpy \"node_modules/@public-ui/components/assets/**/*\" public/assets --dot",
"prepare:themes-assets": "cpy \"node_modules/@public-ui/themes/assets/**/*\" public/assets --dot",
"serve": "vite",
"start": "vite --open",
"test:e2e": "playwright test",
"test": "pnpm test:e2e",
"unused": "knip"
},
"dependencies": {
"@leanup/stack": "1.3.54",
"@playwright/test": "1.57.0",
"@public-ui/components": "2.2.19",
"@public-ui/react-v19": "2.2.19",
"@public-ui/themes": "2.2.19",
"@stencil/core": "4.36.3",
"@types/node": "24.10.4",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@unocss/core": "66.5.12",
"@unocss/preset-mini": "66.5.10",
"@unocss/vite": "66.5.10",
"@vitejs/plugin-react-swc": "4.2.2",
"adopted-style-sheets": "1.1.9-rc.20",
"cpy-cli": "6.0.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"formik": "2.4.9",
"knip": "5.80.1",
"npm-run-all2": "8.0.4",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-number-format": "5.4.4",
"react-router": "7.12.0",
"react-router-dom": "7.12.0",
"prettier": "3.7.4",
"tslib": "2.8.1",
"typescript": "5.9.3",
"vite": "7.3.1",
"world_countries_lists": "3.3.0",
"yup": "1.7.1"
},
"files": [
"dist",
"public",
"src",
"index.html",
"tsconfig.json",
"unocss.config.ts",
"vite.config.ts"
]
}