-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
100 lines (100 loc) · 2.65 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
{
"name": "orcamap-react",
"description": "ReactJS version of Orcamap, an open-source bioacoustic tools aimed at saving endangered orcas.",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/orcasound/orcamap-react.git"
},
"bugs": {
"url": "https://github.com/orcasound/orcamap-react/issues"
},
"main": "src/index.js",
"keywords": [
"react",
"create-react-app",
"typescript",
"material-ui",
"orcamap",
"orcamap-reactjs",
"orca",
"bioacoustic-tools"
],
"dependencies": {
"@testing-library/jest-dom": "^5.11.9",
"@testing-library/react": "^11.2.5",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.33",
"@types/openlayers": "^4.6.17",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"chokidar": "^3.5.1",
"dotenv": "^8.2.0",
"google-spreadsheet": "^3.1.15",
"mapbox-gl": "^1.13.0",
"ol": "^6.5.0",
"rbush": "^3.0.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-mapbox-gl": "^5.1.1",
"react-scripts": "^4.0.3",
"typescript": "^4.2.3"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "tsc --noEmit && eslint src/",
"lint:fix": "tsc --noEmit && eslint src/ --fix",
"prepare": "husky install",
"commit": "cz",
"format": "prettier --write ."
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/google-spreadsheet": "^3.0.2",
"@types/mapbox-gl": "^1.12.8",
"@types/ol": "^6.4.2",
"@typescript-eslint/eslint-plugin": "^4.16.1",
"@typescript-eslint/parser": "^4.16.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.21.0",
"eslint-config": "^0.3.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^5.1.3",
"lint-staged": "^10.5.4",
"netlify-plugin-snyk": "^1.3.0",
"prettier": "^2.2.1"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"npm run lint:fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}