forked from rjsf-team/react-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 3.15 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
{
"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,js,tsx,jsx}' --quiet",
"cs-check": "lerna run cs-check",
"cs-format": "lerna run cs-format",
"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 build && npm run test && npm run lint",
"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.22.15",
"@nrwl/nx-cloud": "^15.3.5",
"@types/estree": "^1.0.1",
"@types/jest": "^29.5.5",
"@types/node": "^18.17.14",
"@types/prettier": "^2.7.3",
"@types/react": "^17.0.65",
"@types/react-dom": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"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.6.4",
"lerna": "^6.6.2",
"lint-staged": "^13.3.0",
"nx": "^15.9.2",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"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"
]
}