-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.31 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.31 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
{
"name": "react-components-workspace",
"type": "module",
"version": "25.2.0-alpha7",
"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": "vitest run",
"test:watch": "vitest watch",
"validate": "concurrently npm:validate:*",
"validate:types": "tsc --noEmit",
"validate:prettier": "prettier -c scripts packages/**/src/*.ts packages/**/src/{utils,renderers}/*.ts test types vite.config.ts vitest.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)",
"devDependencies": {
"@testing-library/user-event": "^14.5.2",
"@types/chai-as-promised": "^8.0.1",
"@types/chai-dom": "^1.11.3",
"@types/node": "^22.15.17",
"@types/react": "^19.1.13",
"@types/react-dom": "^19.1.9",
"@types/sinon": "^17.0.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser-playwright": "^4.1.2",
"chai-as-promised": "^8.0.1",
"chai-dom": "^1.12.0",
"concurrently": "^9.1.0",
"esbuild": "^0.27.0",
"glob": "^10.4.5",
"json-schema-to-typescript": "^14.0.5",
"lint-staged": "^15.2.10",
"micromatch": "^4.0.8",
"playwright": "^1.52.0",
"prettier": "^3.4.2",
"rimraf": "^5.0.0",
"simple-git-hooks": "^2.11.1",
"sinon": "^19.0.2",
"tsx": "^4.19.2",
"type-fest": "4.30.1",
"typescript": "^5.7.2",
"vite": "^8.0.3",
"vitest": "^4.1.2",
"vitest-browser-react": "^2.1.0"
},
"workspaces": [
"packages/*"
]
}