-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
79 lines (79 loc) · 2.31 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
{
"name": "somethings-fishy",
"version": "0.1.0",
"description": "Hack The Map 5 project investigating the impact of human influence on aquatic ecosystems in the Gulf of Mexico.",
"type": "module",
"private": true,
"dependencies": {
"@arcgis/core": "^4.22.2",
"@esri/arcgis-rest-auth": "^3.4.3",
"@esri/arcgis-rest-demographics": "^3.4.3",
"@esri/arcgis-rest-request": "^3.4.3",
"@esri/arcgis-rest-routing": "^3.4.3",
"@esri/calcite-components-react": "^0.15.0",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-lazyload": "^3.2.0",
"react-scripts": "3.4.1",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^16.11.19",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.8",
"@types/react-lazyload": "^3.1.1",
"@types/styled-components": "^5.1.19",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"concurrently": "7.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-prettier": "3.4.1",
"eslint-plugin-react": "7.28.0",
"husky": "^7.0.0",
"typescript": "^3.2.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "concurrently npm:lint:*",
"lint:html": "prettier --write \"**/*.html\"",
"lint:js": "eslint --ext .js,.jsx --fix . && prettier --write \"**/*.js\"",
"lint:json": "prettier --write \"**/*.json\"",
"lint:md": "prettier --write \"**/*.md\"",
"lint:ts": "eslint --ext .ts,.tsx --fix . && prettier --write \"**/*.ts?(x)\"",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/benelan/somethings-fishy.git"
},
"volta": {
"node": "16.13.0",
"npm": "8.1.2"
}
}