forked from marmelab/react-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 2.61 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
{
"private": true,
"name": "react-admin-lerna",
"scripts": {
"build": "lerna run build",
"build-demo": "cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn -s build",
"test-unit": "cross-env NODE_ENV=test cross-env NODE_ICU_DATA=node_modules/full-icu jest",
"test-unit-ci": "cross-env NODE_ENV=test cross-env NODE_ICU_DATA=node_modules/full-icu jest --runInBand",
"test-e2e": "yarn run -s build && cross-env NODE_ENV=test && cd cypress && yarn -s test",
"test-e2e-local": "cd cypress && yarn -s start",
"test": "yarn -s test-unit && yarn -s test-e2e",
"test-ci": "yarn -s test-unit-ci && yarn -s test-e2e",
"doc": "cd docs && jekyll server . --watch",
"lint": "eslint \" ./packages /**/src\"",
"prettier": "prettier-eslint --write --list-different \"packages /*/src/**/*.js\" \"examples /*/src/**/*.js\"",
"run-simple": "cd examples/simple && yarn -s start",
"run-tutorial": "yarn run -s build && cd examples/tutorial && yarn -s start",
"run-demo": "yarn run -s build && cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=rest yarn -s start",
"run-graphql-demo": "yarn run -s build && cd examples/demo && cross-env REACT_APP_DATA_PROVIDER=graphql yarn -s start",
"run-graphcool-demo": "yarn run -s build && cd examples/graphcool-demo && yarn -s start"
},
"jest": {
"setupTestFrameworkScriptFile": "./test-setup.js"
},
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-core": "~6.26.0",
"babel-eslint": "~8.2.2",
"babel-plugin-add-module-exports": "~0.2.1",
"babel-plugin-transform-builtin-extend": "~1.1.2",
"babel-plugin-transform-react-jsx": "~6.24.1",
"babel-plugin-transform-runtime": "~6.23.0",
"babel-preset-es2015": "~6.24.1",
"babel-preset-react": "~6.24.1",
"babel-preset-stage-0": "~6.24.1",
"babel-register": "~6.26.0",
"cheerio": "~1.0.0-rc.2",
"cross-env": "^5.2.0",
"eslint": "~4.19.1",
"eslint-config-prettier": "~2.9.0",
"eslint-plugin-cypress": "~2.0.1",
"eslint-plugin-import": "~2.10.0",
"eslint-plugin-prettier": "~2.6.0",
"eslint-plugin-react": "~7.7.0",
"express": "~4.16.3",
"full-icu": "~1.2.1",
"jest": "20.0.4",
"lerna": "~2.9.1",
"lolex": "~2.3.2",
"prettier": "~1.13.7",
"prettier-eslint-cli": "~4.7.1",
"raf": "~3.4.0",
"wait-on": "^2.1.0"
},
"workspaces": [
"packages/*",
"examples/*",
"cypress"
]
}