forked from marmelab/react-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 3.83 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
{
"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",
"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 start",
"run-no-code": "cd examples/no-code && yarn dev",
"run-tutorial": "cd examples/tutorial && yarn start",
"run-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn start",
"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 start",
"run-demo-watch": "concurrently \"yarn run watch\" \"yarn run run-demo\"",
"run-graphql-demo-watch": "concurrently \"yarn run watch\" \"yarn run run-graphql-demo\"",
"run-crm": "cd examples/crm && yarn start",
"build-crm": "cd examples/crm && yarn build",
"storybook": "start-storybook -p 9010",
"build-storybook": "build-storybook --no-dll -c .storybook -o public --quiet"
},
"devDependencies": {
"@storybook/addon-actions": "^6.4.19",
"@storybook/addon-controls": "^6.4.19",
"@storybook/addon-storysource": "^6.4.19",
"@storybook/addons": "^6.4.19",
"@storybook/builder-webpack5": "^6.4.19",
"@storybook/manager-webpack5": "^6.4.19",
"@storybook/react": "^6.4.19",
"@storybook/testing-react": "^1.2.4",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"concurrently": "^5.1.0",
"cross-env": "^5.2.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-react-app": "^7.0.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-prettier": "^4.0.0",
"full-icu": "~1.3.1",
"husky": "^2.3.0",
"jest": "26.6.0",
"jest-circus": "26.6.0",
"jest-resolve": "26.6.0",
"jest-watch-typeahead": "0.6.1",
"lerna": "~4.0.0",
"lint-staged": "^8.1.7",
"lolex": "~2.3.2",
"prettier": "~2.1.1",
"raf": "~3.4.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"ts-jest": "^26.4.4",
"typescript": "^4.4.0",
"wait-on": "^3.2.0",
"webpack": "^5.70.0",
"whatwg-fetch": "^3.0.0"
},
"workspaces": [
"packages/*",
"examples/*",
"cypress"
],
"dependenciesMeta": {
"@react-spring/core": {
"built": false
}
},
"resolutions": {
"webpack": "^5.0.0",
"css-loader": "^5.0.0",
"dotenv-webpack": "^6.0.0",
"html-webpack-plugin": "^5.0.0",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.0.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-virtual-modules": "^0.4.2",
"mini-css-extract-plugin": "2.4.5"
},
"packageManager": "[email protected]"
}