-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.17 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
{
"name": "what-the-weather",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^1.3.0",
"axios": "^0.18.0",
"date-fns": "^2.4.1",
"emotion": "^9.2.4",
"google-map-react": "^1.1.2",
"lodash.get": "^4.4.2",
"react": "16.9.0-alpha.0",
"react-dom": "16.9.0-alpha.0",
"react-redux": "^7.1.0",
"react-scripts": "^3.0.1",
"styled-components": "^4.2.0",
"typescript": "^3.3.4000"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"e2e": "cypress run",
"e2e:gui": "cypress open",
"e2e:headed": "cypress run --headed",
"install:clean": "rm -rf node_modules && npm install",
"lint:js": "eslint .; exit 0",
"lint:css": "stylelint 'src/**/*.css'",
"lint:fix": "eslint './src/**/*.{ts,tsx}' --fix; exit 0",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"@types/google-map-react": "^0.23.11",
"@types/jest": "^24.0.11",
"@types/lodash.get": "^4.4.6",
"@types/node": "^11.11.5",
"@types/react": "^16.8.8",
"@types/react-dom": "^16.8.3",
"@types/react-redux": "^7.0.9",
"@types/styled-components": "^4.1.15",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"cypress": "^3.3.1",
"cypress-testing-library": "^3.0.1",
"eslint-config-prettier": "^4.1.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.11.1",
"husky": "^1.3.1",
"jest-dom": "^3.2.2",
"jest-localstorage-mock": "^2.4.0",
"jest-styled-components": "^6.3.1",
"lint-staged": "^8.1.5",
"prettier": "^1.12.1",
"react-testing-library": "^7.0.0",
"stylelint": "^9.2.0",
"stylelint-config-standard": "^18.2.0"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write",
"git add"
]
}
}