-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.7 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
{
"name": "rjsf-mantine-theme",
"private": true,
"version": "0.0.1",
"description": "Mantine theme for react-jsonschema-form",
"scripts": {
"build": "lerna run build",
"lint": "eslint './packages/**/*.{ts,js,tsx,jsx}' --quiet",
"lint:fix": "eslint --fix .",
"start": "echo 'use \"npm run build\" from main directory and then \"npm start\" in the playground package'",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "lerna run typecheck",
"increase-version": "lerna version",
"release": "lerna publish from-package",
"ci:release": "npm run build && lerna publish from-package --yes"
},
"keywords": [],
"author": "",
"license": "ISC",
"workspaces": [
"packages/*"
],
"devDependencies": {
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/prettier": "^2.7.3",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"lerna": "^8.0.2",
"prettier": "^3.1.1",
"rollup": "^4.9.6",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-postcss": "^4.0.2",
"typescript": "^5.3.3"
},
"packageManager": "npm@9.6.6+sha1.553376bb7b5de4b1cf2b5f3471f674b678c7e14d"
}