This repository has been archived by the owner on Apr 10, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.04 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
{
"name": "u6-interview-project",
"version": "0.1.0",
"author": "Filipe Oliveira <[email protected]>",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "TZ=UTC react-scripts test --env=jsdom",
"test:coverage": "npm run test -- --coverage && open coverage/lcov-report/index.html",
"eject": "react-scripts eject",
"lint": "tslint --config tslint.json --project . --format stylish"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"connected-react-router": "^6.2.2",
"date-fns": "^1.30.1",
"history": "^4.7.2",
"lodash": "^4.17.13",
"normalize.css": "^8.0.1",
"prop-types": "^15.6.2",
"react": "^16.8.0-alpha.1",
"react-dom": "^16.8.0-alpha.1",
"react-redux": "^6.0.0",
"react-router": "^4.3.1",
"react-router-dom": "^4.3.1",
"react-scripts": "^2.1.3",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"rss-parser": "^3.6.2",
"shortid": "^2.2.14",
"styled-components": "^4.1.3",
"typescript": "^3.2.4",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/fetch-mock": "^7.2.2",
"@types/googlemaps": "^3.30.16",
"@types/jest": "^23.3.13",
"@types/lodash": "^4.14.120",
"@types/node": "^10.12.18",
"@types/ramda": "^0.25.47",
"@types/react": "^16.7.21",
"@types/react-dom": "^16.0.11",
"@types/react-redux": "^7.0.1",
"@types/react-router-dom": "^4.3.1",
"@types/redux": "^3.6.0",
"@types/redux-mock-store": "^1.0.0",
"@types/shortid": "^0.0.29",
"@types/styled-components": "^4.1.6",
"fetch-mock": "^7.3.0",
"husky": "^1.3.1",
"prettier": "^1.16.1",
"react-testing-library": "^5.4.4",
"redux-devtools-extension": "^2.13.7",
"redux-mock-store": "^1.5.3",
"tslint": "^5.12.1",
"tslint-config-prettier": "^1.17.0",
"tslint-react": "^3.6.0"
}
}