-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.62 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
{
"name": "the-bid-web-app",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint . --fix --ignore-path .gitignore --ignore-pattern '!.eslintrc.js'",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "npm run lint && npm run unit",
"unit": "CI=true react-scripts test",
"coverage": "npm run unit -- --coverage",
"eject": "react-scripts eject",
"storybook": "start-storybook -p 9009 -s public",
"build-storybook": "build-storybook -s public"
},
"dependencies": {
"@material-ui/core": "^3.9.3",
"@material-ui/icons": "^3.0.2",
"apollo-boost": "^0.3.1",
"auth0-js": "^9.10.2",
"axios": "^0.18.0",
"graphql": "^14.2.1",
"history": "^4.9.0",
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-apollo": "^2.5.5",
"react-app-polyfill": "^1.0.0",
"react-dom": "^16.8.6",
"react-markdown": "^4.0.8",
"react-number-format": "^4.0.7",
"react-router": "^5.0.0",
"react-router-dom": "^5.0.0",
"react-scripts": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.4",
"@octokit/rest": "^16.25.0",
"@sambego/storybook-state": "^1.3.4",
"@storybook/addon-actions": "^5.0.11",
"@storybook/addon-links": "^5.0.11",
"@storybook/addon-storyshots": "^5.0.11",
"@storybook/addons": "^5.0.11",
"@storybook/react": "^5.0.11",
"apollo-storybook-react": "^0.2.1",
"axios-mock-adapter": "^1.16.0",
"babel-loader": "^8.0.5",
"babel-plugin-require-context-hook": "^1.0.0",
"casual-browserify": "^1.5.19-2",
"core-js": "^3.0.1",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-react-adapter-future": "^1.1.3",
"enzyme-to-json": "^3.3.5",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-jest": "^22.5.1",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-security": "^1.4.0",
"graphql-tools": "^4.0.4",
"jest-enzyme": "^7.0.2",
"jest-localstorage-mock": "^2.4.0",
"node-fetch": "^2.4.1",
"prettier": "^1.17.0",
"react-jss": "^8.6.1",
"react-test-renderer": "^16.8.6",
"require-context.macro": "^1.0.4"
},
"prettier": {
"semi": false,
"printWidth": 120,
"singleQuote": true
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!**/node_modules/**",
"!**/*.{stories,test}.{js,jsx}",
"!src/config/**",
"!src/styles/**",
"!src/setupTests.js"
]
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}