-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.32 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.32 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
{
"name": "react-wrappers",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "npm run build-wc && npm run build-dm && npm run build-grids && npm run build-grid-lite && tsc && vite build",
"build:docs:dev": "cross-env NODE_ENV=\"development\" npm run build:typedoc",
"build:docs:staging": "cross-env NODE_ENV=\"staging\" npm run build:typedoc",
"build:docs:prod": "cross-env NODE_ENV=\"production\" npm run build:typedoc",
"build:typedoc": "npm run build:plugin && typedoc",
"build:plugin": "tsc --project ./plugins/typedoc-plugin-react-components/tsconfig.json",
"build:plugin:watch": "tsc --project ./plugins/typedoc-plugin-react-components/tsconfig.json --watch",
"build:plugin:prod": "tsc --project ./plugins/typedoc-plugin-react-components/tsconfig.prod.json",
"preview": "vite preview",
"build-wc": "tsx ./scripts/build-wc.ts",
"build-dm": "tsx ./scripts/build-dm.ts",
"build-grids": "tsx ./scripts/build-grids.ts",
"build-grid-lite": "tsx ./scripts/build-grid-lite.ts",
"test:browser": "vitest",
"test:ci": "vitest --run --coverage",
"lint": "biome lint --verbose --files-ignore-unknown=true",
"prepare": "lefthook install"
},
"dependencies": {
"@lit/react": "^1.0.8",
"igniteui-dockmanager": "~2.0.1",
"igniteui-grid-lite": "~0.6.0",
"igniteui-webcomponents": "~7.0.0",
"igniteui-webcomponents-grids": "~7.0.0",
"lit": "^3.3.2"
},
"devDependencies": {
"@biomejs/biome": "~2.4.4",
"@types/node": "^25.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"@vitest/browser": "^4.0.18",
"@vitest/browser-playwright": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"cross-env": "^7.0.3",
"dompurify": "^3.3.1",
"ig-typedoc-theme": "^6.2.3",
"lefthook": "^2.1.1",
"marked": "^17.0.3",
"marked-shiki": "^1.2.1",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rimraf": "^6.1.3",
"shiki": "^3.21.0",
"tsx": "^4.21.0",
"typedoc": "^0.27.9",
"typedoc-plugin-localization": "^3.0.6",
"typescript": "^5.8.3",
"vite": "^7.3.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.0.18",
"vitest-browser-react": "^2.0.5"
}
}