-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.62 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
{
"name": "quick-air",
"version": "1.0.0",
"description": "Check air quality near you quickly, using Airly API",
"private": true,
"scripts": {
"build": "next build",
"dev": "next dev",
"start": "next start",
"cy:open": "cypress open",
"cy:run": "cypress run",
"test": "xo && ava && start-server-and-test dev http://localhost:3000 cy:run"
},
"engines": {
"node": "12.x"
},
"ava": {
"require": [
"@babel/register",
"./test/helpers/_ignore-utils.js"
]
},
"xo": {
"envs": [
"node",
"browser"
],
"globals": [
"cy",
"Cypress",
"it",
"describe"
],
"extends": "xo-react",
"nodeVersion": ">=10",
"parser": "babel-eslint",
"rules": {
"import/no-unassigned-import": "off",
"import/no-unresolved": "off",
"react/jsx-child-element-spacing": "off",
"no-negated-condition": "off",
"promise/prefer-await-to-then": "off",
"node/no-unsupported-features/es-syntax": "off"
},
"settings": {
"react": {
"version": "16.13"
}
},
"ignores": [
"cypress/plugins/index.js"
]
},
"dependencies": {
"@chakra-ui/core": "^0.7.0",
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"airly": "^3.1.0",
"chart.js": "^2.9.3",
"core-js": "^3.6.4",
"date-fns": "^2.11.1",
"emotion-theming": "^10.0.27",
"haversine": "^1.1.1",
"idb-keyval": "^3.2.0",
"leaflet": "^1.6.0",
"next": "^9.3.3",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-chartjs-2": "^2.9.0",
"react-dom": "^16.13.1",
"react-leaflet": "^2.6.3",
"react-use-form-state": "^0.12.1"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/register": "^7.9.0",
"ava": "^3.5.2",
"babel-eslint": "^10.1.0",
"babel-plugin-emotion": "^10.0.29",
"cypress": "^4.3.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^3.0.0",
"imagemin-svgo": "^7.1.0",
"next-fonts": "^1.0.3",
"next-offline": "^5.0.0",
"next-optimized-images": "^2.5.6",
"react-test-renderer": "^16.13.1",
"require-hacker": "^3.0.1",
"start-server-and-test": "^1.10.11",
"xo": "^0.28.1"
}
}