-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
package.json
84 lines (84 loc) · 3.55 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "react-jsonschema-form",
"private": true,
"description": "monorepo for react-jsonschema-form and its themes",
"engines": {
"node": ">=14"
},
"scripts": {
"publish-repo": "lerna publish",
"changed": "lerna changed",
"test": "lerna run --concurrency 2 --stream test",
"test:update": "lerna run --concurrency 2 --stream test:update",
"lint": "eslint './packages/**/*.{ts,tsx}' --quiet",
"cs-check": "lerna run cs-check",
"cs-format": "lerna run cs-format",
"clean-build": "rimraf packages/*/tsconfig.tsbuildinfo && rimraf packages/*/lib && rimraf packages/*/dist && npm run build",
"build": "lerna run --stream build",
"build-serial": "lerna run --concurrency 1 --stream build",
"start": "echo 'use \"npm run build\" from main directory and then \"npm start\" in the playground package'",
"pre-commit:husky": "lerna run --concurrency 1 --stream precommit",
"prepare": "husky install",
"format": "prettier --write .",
"format-check": "prettier --check .",
"bump-all-packages": "echo 'NOTE: Make sure to sanity check the playground locally before commiting changes' && npm update --save && npm install && npm run lint && npm run build && npm run test",
"bump-peer-deps": "node scripts/bump-peer-deps.js",
"refresh-node-modules": "rimraf packages/*/node_modules && rimraf node_modules && npm install",
"commit-package-changes": "git add package-lock.json packages/*/package*.json && cross-env CI=skipPrecommit git commit -m 'updated package*.json after versioning' && git push",
"post-versioning": "echo 'This will take a while...' && npm run bump-peer-deps && npm run refresh-node-modules && npm run commit-package-changes && npm run update-version-tags",
"update-version-tags": "git tag -f $(node scripts/get-version-tag.js) && git push -f origin $(node scripts/get-version-tag.js)"
},
"license": "Apache-2.0",
"homepage": "https://github.com/rjsf-team/react-jsonschema-form",
"devDependencies": {
"@babel/eslint-parser": "^7.23.10",
"@nrwl/nx-cloud": "^15.3.5",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/estree": "^1.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.20",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.58",
"@types/react-dom": "^18.2.19",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cross-env": "^7.0.3",
"esbuild": "^0.18.20",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^6.6.2",
"lint-staged": "^13.3.0",
"nx": "^15.9.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
},
"workspaces": [
"packages/antd",
"packages/bootstrap-4",
"packages/chakra-ui",
"packages/core",
"packages/docs",
"packages/fluent-ui",
"packages/fluentui-rc",
"packages/material-ui",
"packages/mui",
"packages/playground",
"packages/semantic-ui",
"packages/utils",
"packages/validator-ajv6",
"packages/validator-ajv8",
"packages/snapshot-tests"
],
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}