-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
58 lines (58 loc) · 1.69 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
{
"name": "covid",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "ENV=development DATA=dev next dev -p 3001",
"dev-live-data": "ENV=development next dev -p 3001",
"build": "next build && next export",
"build-dev": "ENV=development next build && next export",
"start": "next start",
"test": "jest",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"imagemin-svgo": "^7.1.0",
"leaflet": "^1.6.0",
"next": "^9.5.1",
"next-optimized-images": "^2.5.5",
"next-pwa": "^2.3.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-leaflet": "^2.6.3",
"react-scroll": "^1.7.16",
"react-slick": "^0.25.2",
"react-spring": "^8.0.27",
"react-use": "^14.1.1",
"react-visibility-sensor": "^5.1.1",
"recharts": "^1.8.5",
"styled-components": "^5.0.1",
"swr": "^0.2.0",
"unfetch": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@storybook/addon-actions": "^6.0.10",
"@storybook/addon-essentials": "^6.0.10",
"@storybook/addon-links": "^6.0.10",
"@storybook/react": "^6.0.10",
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.9",
"@types/leaflet": "^1.5.17",
"@types/react": "^16.9.44",
"@types/react-leaflet": "^2.5.2",
"@types/react-slick": "^0.23.4",
"@types/recharts": "^1.8.14",
"@types/styled-components": "^5.1.2",
"babel-jest": "^26.2.2",
"babel-loader": "^8.1.0",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.3",
"jest": "^26.2.2",
"react-is": "^16.13.1",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
}
}