forked from mui/toolpad
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 3.95 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"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"
]
},
"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",
"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:build:api": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/docs/buildApi.ts",
"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 --exact --no-changelog --no-push --no-git-tag-version",
"release:publish": "yarn && yarn release:build && lerna publish from-package --force-publish --no-git-tag-version --no-push --no-git-reset",
"release:publish-canary": "yarn && yarn release:build && 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": "rimraf ./node_modules/.vite && playwright test --config ./test/playwright.config.ts",
"test:argos": "node ./scripts/pushArgos.mjs",
"test": "lerna run test",
"check-types": "lerna run check-types",
"toolpad": "node packages/toolpad-app/cli.js",
"jsonSchemas": "tsx ./scripts/docs/generateJsonSchemas.ts",
"check-changes": "git add -A && git diff --exit-code --staged",
"test:rest:start": "tsx ./scripts/restTestServer.ts"
},
"devDependencies": {
"@argos-ci/core": "0.12.0",
"@mui/monorepo": "https://github.com/mui/material-ui.git",
"@next/eslint-plugin-next": "13.5.2",
"@playwright/test": "1.38.1",
"@testing-library/react": "14.0.0",
"@types/archiver": "5.3.3",
"@types/gtag.js": "0.0.14",
"@types/node": "20.6.4",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "6.7.2",
"@typescript-eslint/parser": "6.7.2",
"babel-plugin-transform-rename-import": "2.3.0",
"chalk": "5.3.0",
"eslint": "8.50.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-webpack": "0.13.7",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-mocha": "10.1.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-typescript-enum": "2.1.0",
"execa": "8.0.1",
"express": "4.18.2",
"format-util": "1.0.5",
"globby": "13.2.2",
"jsdom": "22.1.0",
"lerna": "7.3.0",
"markdownlint-cli2": "0.10.0",
"prettier": "2.8.8",
"pretty-quick": "3.1.3",
"react-inspector": "6.0.2",
"recharts": "2.8.0",
"regenerator-runtime": "0.14.0",
"rimraf": "5.0.1",
"typescript": "5.2.2",
"vitest-dom": "0.1.1",
"vitest-fail-on-console": "0.5.1",
"yarn-deduplicate": "6.0.2"
},
"dependencies": {
"archiver": "6.0.1",
"cross-env": "7.0.3",
"dotenv-cli": "7.3.0",
"inquirer": "9.2.11",
"lodash": "4.17.21",
"semver": "7.5.4",
"tsup": "7.2.0",
"tsx": "3.12.10",
"vitest": "0.34.5",
"yargs": "17.7.2",
"zod": "3.22.2",
"zod-to-json-schema": "3.21.4"
},
"engines": {
"npm": "please-use-yarn",
"node": ">=18"
}
}