forked from data-for-change/anyway-newsflash-infographics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.18 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "anyway-newsflash-infographics",
"version": "0.2.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.11.3",
"@material-ui/icons": "^4.11.2",
"@types/classnames": "^2.2.11",
"@types/query-string": "^6.3.0",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"dom-to-image": "^2.6.0",
"env-cmd": "^10.1.0",
"file-saver": "^2.0.5",
"html2canvas": "^1.0.0-rc.7",
"i18next": "^19.8.7",
"i18next-http-backend": "^1.1.0",
"leaflet": "^1.7.1",
"leaflet.heat": "^0.2.0",
"mobx": "^5.15.7",
"mobx-react-lite": "^1.5.2",
"normalize.css": "^8.0.1",
"query-string": "^6.13.8",
"react": "^16.14.0",
"react-async-loader": "^0.1.2",
"react-dom": "^16.14.0",
"react-i18next": "^11.8.5",
"react-leaflet": "^2.8.0",
"react-leaflet-google-layer": "^1.1.5",
"react-leaflet-heatmap-layer": "^2.0.0",
"react-router-dom": "^5.2.0",
"react-scripts": "3.3.0",
"react-share": "^4.3.1",
"recharts": "^1.8.5",
"typescript": "^3.9.7"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"build:staging": "env-cmd -f .env.staging react-scripts build",
"build:demo": "env-cmd -f .env.demo react-scripts build",
"lint": "eslint src/**/*.ts src/**/*.tsx",
"test": "react-scripts test",
"eject": "react-scripts eject",
"git:prune": "git remote prune origin",
"git:merged": "git branch --merged development",
"sb": "start-storybook -p 6006 -s public",
"build-sb": "build-storybook -s public"
},
"eslintConfig": {
"extends": [
"react-app",
"prettier",
"prettier/react"
],
"rules": {
"max-lines": [
2,
{
"max": 200,
"skipBlankLines": true,
"skipComments": true
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^6.1.16",
"@storybook/addon-essentials": "^6.1.16",
"@storybook/addon-links": "^6.1.16",
"@storybook/node-logger": "^6.1.16",
"@storybook/preset-create-react-app": "^3.1.5",
"@storybook/react": "^6.1.16",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.5.0",
"@testing-library/user-event": "^7.2.1",
"@types/dom-to-image": "^2.6.2",
"@types/file-saver": "^2.0.1",
"@types/googlemaps": "^3.43.2",
"@types/html2canvas": "0.0.35",
"@types/jest": "^24.9.1",
"@types/node": "^12.19.15",
"@types/react": "^16.14.3",
"@types/react-dom": "^16.9.10",
"@types/react-leaflet": "^2.5.2",
"@types/react-router-dom": "^5.1.7",
"@types/recharts": "^1.8.19",
"eslint": "6.8.0",
"eslint-config-prettier": "6.11.0",
"husky": "4.2.5",
"lint-staged": "10.2.8",
"prettier": "2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix"
],
"*.{html,css,scss,stylus,js,ts,tsx,json,yml,md}": [
"prettier --write"
]
}
}