-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 2.32 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
{
"name": "mapadocovid19.com.br",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --cache --fix",
"pretest": "npm run lint",
"format": "prettier --loglevel warn --write \"**/*.{js,css,md}\"",
"posttest": "npm run format",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@chakra-ui/core": "^0.7.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@nivo/core": "^0.61.0",
"@nivo/geo": "^0.61.1",
"@nivo/line": "^0.61.1",
"@vx/vx": "^0.0.196",
"date-fns": "^2.11.1",
"emotion-theming": "^10.0.27",
"framer-motion": "^1.10.3",
"isomorphic-fetch": "^2.2.1",
"next": "^10.0.0",
"normalize.css": "^8.0.1",
"react": "16.13.1",
"react-dom": "16.13.1",
"react-github-corner": "^2.3.0",
"react-table": "^7.0.4",
"topojson": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@emotion/types": "^0.7.0",
"@storybook/addon-actions": "^5.3.18",
"@storybook/addon-links": "^5.3.18",
"@storybook/addons": "^5.3.18",
"@storybook/preset-typescript": "^3.0.0",
"@storybook/react": "^5.3.18",
"@types/node": "^13.13.5",
"@types/react": "^16.9.34",
"@types/topojson": "^3.2.2",
"@typescript-eslint/eslint-plugin": "3",
"@typescript-eslint/parser": "^3.2.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.1.0",
"eslint": "7",
"eslint-config-prettier": "^6.10.1",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-with-typescript": "^18.0.2",
"eslint-plugin-import": "2",
"eslint-plugin-node": "11",
"eslint-plugin-promise": "4",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-standard": "4",
"husky": ">=4",
"lint-staged": ">=10",
"node-fetch": "^2.6.0",
"prettier": "^2.0.2",
"react-docgen-typescript-loader": "^3.7.2",
"rimraf": "^3.0.2",
"ts-loader": "^7.0.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typescript": "^3.8.3"
},
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}