-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.73 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
{
"name": "coronavirus-treatment-comparison",
"version": "1.0.0",
"description": "Explore stats & compare coronavirus treatment methods easily! #VersusVirus 2020 hackaton project.",
"license": "MIT",
"author": {
"name": "Antoni Kepinski",
"email": "a@kepinski.me",
"url": "https://kepinski.me"
},
"main": "app/background.js",
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"test": "xo"
},
"engines": {
"node": "12.x"
},
"dependencies": {
"@chakra-ui/core": "^0.7.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"chart.js": "^2.9.3",
"core-js": "^3.6.4",
"date-fns": "^2.11.1",
"emotion-theming": "^10.0.27",
"isomorphic-unfetch": "^3.0.0",
"ml5": "^0.5.0",
"next": "^9.3.4",
"next-images": "^1.4.0",
"nprogress": "^0.2.0",
"react": "^16.13.1",
"react-chartjs-2": "^2.9.0",
"react-dom": "^16.13.1",
"react-dropzone": "^10.2.2",
"react-select": "^3.1.0",
"swr": "^0.2.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@types/nprogress": "^0.2.0",
"@types/react": "^16.9.32",
"@types/react-select": "^3.0.11",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"babel-plugin-emotion": "^10.0.33",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-typescript": "^0.27.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"next-fonts": "^1.0.3",
"next-offline": "^5.0.0",
"typescript": "^3.8.3",
"xo": "^0.28.3"
},
"xo": {
"envs": [
"node",
"browser"
],
"extends": [
"xo-typescript",
"xo-react"
],
"rules": {
"import/no-unassigned-import": "off",
"import/extensions": "off",
"unicorn/string-content": "off",
"promise/prefer-await-to-then": "off",
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/prefer-readonly-parameter-types": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-member-access": "off"
},
"settings": {
"react": {
"version": "16.13"
}
},
"extensions": [
"tsx",
"ts"
],
"ignores": [
"babel.config.js",
"next.config.js"
]
}
}