-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathpackage.json
81 lines (81 loc) · 2.35 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": "vaxxnz",
"version": "0.1.0",
"private": true,
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.36",
"@fortawesome/free-solid-svg-icons": "^5.15.4",
"@fortawesome/react-fontawesome": "^0.1.15",
"@turf/distance": "^6.5.0",
"@turf/helpers": "^6.5.0",
"baseui": "^10.1.0",
"date-fns": "^2.23.0",
"i18next": "^20.6.0",
"i18next-browser-languagedetector": "^6.1.2",
"js-cookie": "^3.0.1",
"react": "^17.0.2",
"react-cookie-consent": "^6.3.0",
"react-dom": "^17.0.2",
"react-helmet-async": "^1.1.2",
"react-i18next": "^11.11.4",
"react-markdown": "^7.0.1",
"react-router-dom": "^5.3.0",
"react-scripts": "4.0.3",
"react-share": "^4.4.0",
"styletron-engine-atomic": "^1.4.8",
"styletron-react": "^6.0.1",
"web-vitals": "^1.0.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/jest": "^26.0.15",
"@types/js-cookie": "^3.0.0",
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/react-router-dom": "^5.1.9",
"@types/styletron-engine-atomic": "^1.1.1",
"@types/styletron-react": "^5.0.3",
"@types/styletron-standard": "^2.0.2",
"fs": "^0.0.1-security",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.1.2"
},
"scripts": {
"start": "react-scripts start",
"sync:i18n": "ts-node --project src/translations/scripts/tsconfig.json src/translations/scripts/syncTranslations.ts",
"uniqcrowdsourced": "ts-node --project src/translations/scripts/tsconfig.json src/translations/scripts/uniqCrowdsourced.ts",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"prepare": "husky install",
"postinstall": "node ensure-no-npm.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"lint-staged": {
"*.{ts,tsx,json}": "prettier --write",
"*.{ts,tsx}": "eslint --fix"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}