This repository has been archived by the owner on Oct 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
81 lines (81 loc) · 1.96 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": "osm-galaxy",
"version": "0.1.0",
"private": false,
"dependencies": {
"@reduxjs/toolkit": "^1.6.1",
"@sentry/react": "^6.19.7",
"@sentry/tracing": "^6.19.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"axios": "^0.23.0",
"date-fns": "^2.25.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.3",
"mapbox-gl": "^2.5.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-csv": "^2.2.2",
"react-datepicker": "^4.2.1",
"react-dom": "^17.0.2",
"react-intl": "^5.20.12",
"react-placeholder": "^4.1.0",
"react-query": "^3.27.0",
"react-redux": "^7.2.5",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-table": "^7.7.0",
"reactjs-popup": "^2.0.5",
"web-vitals": "^1.0.1",
"webfontloader": "^1.6.28"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"scripts": {
"css": "postcss ./src/assets/styles/tailwind.css -o ./src/assets/styles/tailwind.generated.css",
"flow": "flow",
"lint-staged": "lint-staged",
"prestart": "npm run css",
"prebuild": "npm run css",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all",
"not chrome < 51",
"not safari < 10"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"autoprefixer": "^10.3.6",
"flow-bin": "^0.161.0",
"postcss-cli": "^9.0.1",
"tailwindcss": "^2.2.16"
}
}