-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathpackage.json
67 lines (67 loc) · 2.23 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
{
"name": "root",
"private": true,
"author": "Gert Hengeveld <[email protected]>",
"license": "ISC",
"homepage": "https://react-async.dev",
"repository": "git+https://github.com/ghengeveld/react-async.git",
"workspaces": [
"examples/*",
"packages/*"
],
"scripts": {
"bootstrap": "lerna bootstrap",
"lint": "eslint packages/*/src/*.js",
"test": "jest packages/*/src/*.spec.js",
"test:watch": "yarn test -- --watch",
"test:devtools": "jest react-async-devtools/src",
"test:components": "jest src/Async.spec.js --collectCoverageFrom=src/Async.js",
"test:backwards": "yarn add -D -W [email protected] [email protected] && yarn test:components",
"test:forwards": "yarn add -D -W react@next react-dom@next && yarn test",
"test:latest": "yarn add -D -W react@latest react-dom@latest && yarn test",
"test:compat": "yarn test:backwards && yarn test:forwards && yarn test:latest",
"ci": "yarn lint && yarn test:compat",
"build": "lerna run build",
"bump": "lerna version -m 'Bump' --ignore-changes 'examples/**'",
"postbump": "yarn build",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o docs"
},
"peerDependencies": {
"react": ">=16.3.1"
},
"optionalDependencies": {
"prop-types": ">=15.5.7"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-object-rest-spread": "7.4.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-env": "7.4.5",
"@babel/preset-react": "7.0.0",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"@testing-library/react": "^8.0.4",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"babel-loader": "^8.0.6",
"eslint": "6.0.1",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-jest": "22.7.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.14.2",
"eslint-plugin-react-hooks": "1.6.1",
"jest": "24.8.0",
"jest-dom": "3.5.0",
"lerna": "^3.15.0",
"prettier": "1.17.0",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"dependencies": {
"copyfiles": "^2.1.0"
}
}