-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.96 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
{
"name": "clock-up",
"homepage": "https://clockup.malloc.tokyo",
"private": true,
"dependencies": {
"apollo-cache-inmemory": "^1.6.2",
"apollo-client": "^2.6.3",
"apollo-link-http": "^1.5.9",
"auth0-lock": "^11.17.1",
"graphql": "^14.0.2",
"graphql-tag": "^2.10.1",
"react": "^16.8.6",
"react-apollo": "^2.3.3",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-scripts": "2.1.1",
"react-spinners": "^0.4.7",
"recompose": "^0.30.0",
"redux": "^4.0.4",
"styled-components": "^4.1.3"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:cov": "react-scripts test --env=jsdom --collectCoverage",
"eject": "react-scripts eject",
"codecov": "codecov -t $CODECOV_TOKEN",
"lint": "eslint src",
"lint:fix": "eslint --fix src"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx,mjs}",
"!src/**/*.style.js",
"!src/index.js",
"!src/registerServiceWorker.js",
"!src/index.css.js",
"!src/types/**/*",
"!.flsrc/testutil.js",
"!src/const.js"
]
},
"devDependencies": {
"babel-plugin-styled-components": "^1.10.0",
"codecov": "^3.5.0",
"dotenv": "^8.0.0",
"eslint-config-react-app": "^3.0.5",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"flow-bin": "^0.89.0",
"prettier": "^1.18.2",
"react-app-rewire-styled-components": "^3.0.2",
"react-app-rewired": "^2.1.3",
"react-test-renderer": "^16.8.6",
"react-testing-library": "^5.4.0"
},
"browserslist": {
"development": [
"last 2 chrome versions",
"last 2 firefox versions",
"last 2 edge versions"
],
"production": [
">0.1%",
"not op_mini all"
]
}
}