forked from mui/toolpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 3.47 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 3.47 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "mui-toolpad",
"version": "0.0.1",
"license": "MIT",
"description": "Build MUI apps quickly",
"repository": "https://github.com/mui/mui-toolpad.git",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"docs"
],
"nohoist": [
"docs",
"docs/**"
]
},
"bin": {
"toolpad": "./dist/index.js"
},
"scripts": {
"markdownlint": "markdownlint-cli2 \"**/*.md\"",
"prettier": "pretty-quick --ignore-path .eslintignore",
"prettier:all": "prettier --write . --ignore-path .eslintignore",
"deduplicate": "node scripts/deduplicate.mjs",
"start": "dotenv cross-env FORCE_COLOR=1 yarn workspace @mui/toolpad-app start",
"dev": "dotenv cross-env FORCE_COLOR=1 lerna -- run dev --stream --parallel --ignore docs",
"docs:dev": "yarn workspace docs dev",
"docs:build": "yarn workspace docs build",
"docs:export": "yarn workspace docs export",
"eslint": "eslint . --report-unused-disable-directives --ext .js,.ts,.tsx",
"jsonlint": "node ./scripts/jsonlint.mjs",
"release:build": "lerna run --ignore docs --stream build",
"release:version": "lerna version --no-changelog --no-push --no-git-tag-version",
"release:publish": "lerna publish from-package --force-publish --no-git-tag-version --no-push --no-git-reset",
"release:publish-canary": "lerna publish from-package --force-publish --no-git-tag-version --no-push --no-git-reset --pre-dist-tag canary",
"release:changelog": "dotenv -- node ./scripts/releaseChangelog.mjs --repo mui-toolpad",
"test:build": "lerna run build --scope @mui/toolpad-core --scope @mui/toolpad-components --stream",
"test:integration": "playwright test --config ./test/integration/playwright.config.ts",
"test": "jest",
"check-types": "lerna run check-types",
"toolpad": "toolpad"
},
"devDependencies": {
"@mui/monorepo": "https://github.com/mui/material-ui.git",
"@next/eslint-plugin-next": "13.2.4",
"@playwright/test": "^1.32.1",
"@swc/helpers": "^0.4.14",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/gtag.js": "^0.0.12",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/rimraf": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"chalk": "^5.2.0",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-typescript-enum": "^2.1.0",
"execa": "^7.1.1",
"format-util": "^1.0.5",
"globby": "^13.1.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lerna": "^6.6.1",
"markdownlint-cli2": "^0.6.0",
"prettier": "^2.8.7",
"pretty-quick": "^3.1.3",
"regenerator-runtime": "^0.13.11",
"rimraf": "^4.4.1",
"typescript": "^5.0.3",
"yarn-deduplicate": "^6.0.1"
},
"dependencies": {
"cross-env": "^7.0.3",
"dotenv-cli": "^7.1.0",
"inquirer": "^9.1.5",
"semver": "^7.3.8",
"tsup": "^6.7.0",
"yargs": "^17.7.1"
},
"engines": {
"npm": "please-use-yarn",
"node": ">=16.17"
}
}