-
-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
package.json
95 lines (95 loc) · 3.96 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
{
"private": true,
"name": "react-admin-lerna",
"scripts": {
"build": "lerna run build",
"watch": "lerna run --parallel watch",
"test-unit": "cross-env NODE_ENV=test cross-env BABEL_ENV=cjs NODE_ICU_DATA=./node_modules/full-icu jest",
"test-unit-ci": "cross-env NODE_ENV=test cross-env BABEL_ENV=cjs NODE_ICU_DATA=./node_modules/full-icu jest --runInBand",
"test-e2e": "yarn run -s build && cross-env NODE_ENV=test && cd cypress && yarn test",
"test-e2e-local": "cd cypress && yarn start",
"test": "yarn test-unit && yarn test-e2e",
"doc": "cd docs && jekyll server . --watch --host 0.0.0.0",
"lint": "eslint --ext .js,.ts,.tsx \"./packages/**/src/**/*.{js,ts,tsx}\" \"./examples/**/src/**/*.{js,ts,tsx}\" \"./cypress/**/*.{js,ts,tsx}\"",
"prettier": "prettier --config ./.prettierrc.js --write --list-different \"packages/*/src/**/*.{js,json,ts,tsx,css,md}\" \"examples/*/src/**/*.{js,ts,json,tsx,css,md}\" \"cypress/**/*.{js,ts,json,tsx,css,md}\"",
"run-simple": "cd examples/simple && yarn dev",
"run-no-code": "cd examples/no-code && yarn dev",
"run-tutorial": "cd examples/tutorial && yarn dev",
"run-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn dev",
"build-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn build",
"run-graphql-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=graphql yarn dev",
"run-crm": "cd examples/crm && yarn dev",
"build-crm": "cd examples/crm && yarn build",
"storybook": "storybook dev -p 9010",
"build-storybook": "storybook build -c .storybook -o public --quiet"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@storybook/addon-actions": "^8.1.9",
"@storybook/addon-controls": "^8.1.9",
"@storybook/addon-docs": "^8.1.9",
"@storybook/addon-storysource": "^8.1.9",
"@storybook/addon-webpack5-compiler-babel": "^3.0.3",
"@storybook/react": "^8.1.9",
"@storybook/react-webpack5": "^8.1.9",
"@storybook/source-loader": "^8.1.9",
"@types/jest": "^29.5.2",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"cross-env": "^5.2.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-testing-library": "^5.11.0",
"full-icu": "^1.3.1",
"global-jsdom": "^9.0.1",
"husky": "^2.3.0",
"jest": "^29.5.0",
"jest-circus": "29.5.0",
"jest-environment-jsdom": "^29.5.0",
"jest-resolve": "29.5.0",
"jest-watch-typeahead": "2.2.2",
"lerna": "~7.1.3",
"lint-staged": "^13.0.3",
"lolex": "~2.3.2",
"prettier": "~3.2.5",
"raf": "~3.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"storybook": "^8.1.9",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3",
"whatwg-fetch": "^3.0.0"
},
"workspaces": [
"packages/*",
"examples/*",
"cypress"
],
"dependenciesMeta": {
"@react-spring/core": {
"built": false
}
},
"resolutions": {
"@typescript-eslint/typescript-estree": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"minimist": "^1.2.6",
"ejs": "^3.1.7"
},
"packageManager": "[email protected]",
"changelog": {
"repo": "marmelab/react-admin",
"labels": {
"breaking change": "Breaking Changes",
"feature": "New Features",
"fix": "Fixes",
"Documentation": "Documentation",
"TypeScript": "TypeScript"
}
}
}