-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 2.67 KB
/
package.json
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
{
"name": "react-components-workspace",
"type": "module",
"version": "24.6.0-alpha8",
"private": true,
"scripts": {
"build": "npm run build:load-schema && npm run build -w packages/react-components && npm run build -w packages/react-components-pro",
"build:load-schema": "tsx scripts/schema-loader.ts",
"clean": "git clean -dXf -e !.vscode -e !.vscode/** -e !.idea -e !.idea/** -e !node_modules -e !node_modules/**",
"clean:dev": "git clean -dXf -e .vscode -e .vscode/** -e !.idea -e !.idea/** -e !node_modules -e !node_modules/** -e !src/generated -e !css",
"start": "npm run dev",
"dev": "vite dev --open /dev/",
"prepack": "npm run clean",
"prepare": "npm run build",
"test": "karma start karma.config.cjs",
"test:watch": "karma start karma.config.cjs -- --watch",
"test:coverage": "npm run test -- --coverage",
"validate": "concurrently npm:validate:*",
"validate:types": "tsc --noEmit",
"validate:prettier": "prettier -c scripts packages/**/src/*.ts packages/**/src/{utils,renderers}/*.ts test types karma.config.cjs vite.config.ts",
"validate:build": "tsx scripts/validate-build.ts",
"version": "npm run version -ws && git add packages/**/package.json && rimraf package-lock.json node_modules && npm install"
},
"repository": {
"type": "git",
"url": "github.com/vaadin/react-components"
},
"author": "Vaadin Ltd.",
"license": "(Apache-2.0 OR SEE LICENSE IN https://vaadin.com/commercial-license-and-service-terms)",
"overrides": {
"esbuild": "$esbuild"
},
"devDependencies": {
"@esm-bundle/chai": "^4.3.4-fix.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/chai-as-promised": "^7.1.8",
"@types/chai-dom": "^1.11.3",
"@types/karma": "^6.3.8",
"@types/karma-chrome-launcher": "^3.1.4",
"@types/karma-mocha": "^1.3.4",
"@types/mocha": "^10.0.6",
"@types/react-dom": "^18.3.0",
"@types/sinon": "^17.0.3",
"@vitejs/plugin-react": "^4.3.1",
"chai-as-promised": "^8.0.0",
"chai-dom": "^1.12.0",
"concurrently": "^8.2.2",
"esbuild": "^0.21.5",
"glob": "^10.4.1",
"json-schema-to-typescript": "^14.0.5",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-esbuild": "^2.3.0",
"karma-mocha": "^2.0.1",
"karma-vite": "^1.0.5",
"lint-staged": "^15.2.5",
"micromatch": "^4.0.7",
"mocha": "^10.4.0",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"simple-git-hooks": "^2.11.1",
"sinon": "^18.0.0",
"tsx": "^4.15.2",
"type-fest": "^4.20.0",
"typescript": "^5.4.5",
"vite": "^5.2.13"
},
"workspaces": [
"packages/*"
]
}