forked from react-workspaces/react-workspaces-playground
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "@project/components",
"version": "1.0.0",
"main": "src/index.js",
"main:src": "src/index.js",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "eslint ./src/**/*.js --max-warnings=0 --format=codeframe"
},
"dependencies": {
"@houselanister/react-scripts": "3.0.0-alpha-06",
"@storybook/react": "^5.2.0-alpha.35",
"cross-env": "5.0.5",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"prop-types": "^15.6.2",
"react": "^16.8.6",
"react-dom": "^16.8.6"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/setupTests.{js,jsx}",
"!src/serviceWorker.{js,jsx}",
"!src/**/*.(spec|test|stories).{js,jsx}"
],
"coverageThreshold": {
"global": {
"statements": 98,
"branches": 98,
"functions": 98,
"lines": 98
}
}
},
"license": "MIT"
}