-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.98 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
{
"name": "rewards-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@webscopeio/react-textarea-autocomplete": "^4.6.1",
"autosize": "^4.0.2",
"axios": "^0.19.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.11.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"formik": "^1.5.8",
"history": "^4.9.0",
"jest-environment-enzyme": "^7.1.0",
"jest-localstorage-mock": "^2.4.0",
"jest-styled-components": "^6.3.3",
"last": "^1.1.0",
"react": "16.9.0",
"react-dom": "16.9.0",
"react-router": "^5.0.1",
"react-router-dom": "^5.0.1",
"react-router-test-context": "^0.1.0",
"react-scripts": "3.1.1",
"styled-components": "^4.2.0",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.5.2",
"timeago-react": "^2.0.1",
"yup": "^0.27.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"test:ci": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint": "eslint ./src --ext .js,.jsx",
"lint:css": "stylelint './src/*.js'",
"test:all": "yarn lint && yarn lint:css && yarn test:ci"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"@testing-library/jest-dom": "^4.0.0",
"@testing-library/react": "^9.1.1",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.3",
"prettier": "1.18.2",
"pretty-quick": "^1.11.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"post-merge": "yarn outdated"
}
}
}