-
-
Notifications
You must be signed in to change notification settings - Fork 351
/
Copy pathpackage.json
108 lines (108 loc) · 4.08 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
107
108
{
"name": "mui-toolpad",
"version": "0.0.1",
"license": "MIT",
"description": "Build MUI apps quickly",
"repository": "https://github.com/mui/mui-toolpad.git",
"private": true,
"bin": {
"toolpad": "./dist/index.js"
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"install:codesandbox": "corepack enable && PLAYWRIGHT_SKIP_BROWSER_DOWNLOAD=1 pnpm install --no-frozen-lockfile",
"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": "pnpm --filter docs dev",
"docs:build": "pnpm --filter docs build",
"docs:build:api": "tsx --tsconfig ./scripts/tsconfig.json ./scripts/docs/buildApi.ts",
"docs:export": "pnpm --filter 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": "pnpm dedupe && pnpm release:build && pnpm publish --recursive --tag latest",
"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 --enable-source-maps packages/toolpad-app/cli.mjs",
"jsonSchemas": "tsx ./scripts/docs/generateJsonSchemas.ts",
"update-monorepo": "tsx ./scripts/updateMonorepo.ts",
"check-changes": "git add -A && git diff --exit-code --staged",
"test:rest:start": "tsx ./scripts/restTestServer.ts"
},
"devDependencies": {
"@argos-ci/core": "1.5.1",
"@mui/monorepo": "github:mui/material-ui#ef823704f3e956ba7815b5301da5d589cd2e5e13",
"@mui/x-charts": "6.19.1",
"@next/eslint-plugin-next": "14.1.0",
"@playwright/test": "1.41.1",
"@testing-library/react": "14.1.2",
"@types/archiver": "6.0.2",
"@types/gtag.js": "0.0.18",
"@types/node": "20.11.10",
"@types/rimraf": "3.0.2",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"chalk": "5.3.0",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-webpack": "0.13.8",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-material-ui": "workspace:*",
"eslint-plugin-mocha": "10.2.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",
"format-util": "1.0.5",
"globby": "14.0.0",
"jsdom": "24.0.0",
"lerna": "8.0.2",
"markdownlint-cli2": "0.12.1",
"prettier": "3.2.4",
"pretty-quick": "4.0.0",
"react-inspector": "6.0.2",
"recharts": "2.11.0",
"regenerator-runtime": "0.14.1",
"rimraf": "5.0.5",
"typescript": "5.3.3",
"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",
"eslint-import-resolver-exports": "1.0.0-beta.5",
"inquirer": "9.2.13",
"lodash": "4.17.21",
"semver": "7.5.4",
"tsup": "8.0.1",
"tsx": "4.7.0",
"vitest": "1.2.2",
"yargs": "17.7.2",
"zod": "3.22.4",
"zod-to-json-schema": "3.22.4"
},
"engines": {
"npm": "please-use-yarn",
"node": ">=18",
"pnpm": "8.15.0"
},
"resolutions": {
"google-auth-library": "*"
},
"packageManager": "[email protected]"
}