-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
90 lines (90 loc) · 2.79 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
{
"name": "tarkov-tools",
"version": "2.0.2",
"private": true,
"dependencies": {
"@cloudflare/kv-asset-handler": "^0.2.0",
"@kokarn/react-zoom-pan-pinch": "^2.1.4",
"@mdi/js": "^6.1.95",
"@mdi/react": "^1.4.0",
"@reduxjs/toolkit": "^1.5.1",
"@sayari/eslint-plugin": "^0.0.1-rc.4",
"@sentry/react": "^6.0.2",
"@sentry/tracing": "^6.0.2",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/react": "^12.0.0",
"@tippyjs/react": "^4.2.4",
"dayjs": "^1.10.6",
"fast-deep-equal": "^3.1.3",
"fuse.js": "^6.4.6",
"got": "^11.8.3",
"history": "^5.0.0",
"i18next": "^21.3.2",
"i18next-browser-languagedetector": "^6.1.2",
"intersection-observer": "^0.12.0",
"lodash.debounce": "^4.0.8",
"prettier": "^2.5.1",
"rc-slider": "^9.7.1",
"react": "^17.0.1",
"react-countdown": "^2.3.2",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-hotkeys-hook": "^3.4.4",
"react-i18next": "^11.11.0",
"react-intersection-observer": "^8.33.1",
"react-loader-spinner": "^5.0.5",
"react-markdown": "^8.0.0",
"react-query": "^3.34.7",
"react-redux": "^7.2.4",
"react-router-dom": "^6.0.2",
"react-router-hash-link": "^2.4.3",
"react-scripts": "^5.0.0",
"react-select": "^5.1.0",
"react-switch": "^6.0.0",
"react-syntax-highlighter": "^15.4.3",
"react-table": "^7.6.2",
"redux-thunk": "^2.3.0",
"remark-gfm": "^3.0.1",
"resize-observer-polyfill": "^1.5.1",
"source-map-explorer": "^2.5.2",
"tarkov-gun-builder": "^1.1.18",
"victory": "^36.0.0"
},
"scripts": {
"analyze": "source-map-explorer 'build/static/js/*.js'",
"prestart": "npm run prebuild",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"eject": "react-scripts eject",
"prebuild": "node scripts/get-ammo-data.js && node scripts/get-traders.js && node scripts/get-quests.js && node scripts/update-props.js && node scripts/get-contributors.js && node scripts/build-sitemap.js && node scripts/build-guides.js",
"postbuild": "node scripts/build-redirects.js",
"stage": "npx rimraf build && npm run build && npm run preview",
"preview": "npx serve build -l 3001 -s",
"get-quests": "node scripts/get-quests.js"
},
"eslintConfig": {
"extends": [
"react-app",
"plugin:@sayari/recommended"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4
}
}