-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
110 lines (110 loc) · 3.33 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
101
102
103
104
105
106
107
108
109
110
{
"name": "tarkov.dev",
"version": "0.0.0",
"private": true,
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=20"
},
"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,mjs,ts,tsx,json,css,scss,md}\"",
"eject": "react-scripts eject",
"prebuild": "node scripts/update-props.mjs && node scripts/cache-api-data.mjs && node scripts/get-version.mjs && node scripts/get-contributors.mjs && node scripts/build-sitemap.mjs && node scripts/generate-thumbnails.mjs",
"postbuild": "node scripts/build-redirects.mjs && node scripts/critical.mjs",
"stage": "npx rimraf build && npm run build && npm run preview",
"preview": "npx serve build -l 3001 -s",
"critical": "node scripts/critical.mjs",
"cache-api-data": "node scripts/cache-api-data.mjs"
},
"devDependencies": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"prettier": "^3.3.3",
"sharp": "^0.33.5"
},
"dependencies": {
"@emotion/styled": "^11.13.0",
"@marsidev/react-turnstile": "^1.0.2",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@mui/lab": "^6.0.0-beta.10",
"@mui/material": "^6.0.2",
"@mui/x-tree-view": "^7.18.0",
"@reduxjs/toolkit": "^2.2.7",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@tippyjs/react": "^4.2.6",
"classnames": "^2.5.1",
"critical": "^7.2.0",
"cross-fetch": "^4.0.0",
"dayjs": "^1.11.13",
"fast-deep-equal": "^3.1.3",
"framer-motion": "^11.9.0",
"fuse.js": "^7.0.0",
"i18next": "^23.15.1",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^2.6.1",
"intersection-observer": "^0.12.2",
"leaflet": "^1.9.4",
"leaflet-fullscreen": "^1.0.2",
"leaflet.awesome-markers": "2.0.5",
"lodash.debounce": "^4.0.8",
"rc-slider": "^11.1.6",
"react": "^18.3.1",
"react-cookie-consent": "^9.0.0",
"react-countdown": "^2.3.6",
"react-dom": "^18.3.1",
"react-error-boundary": "^4.0.13",
"react-helmet": "^6.1.0",
"react-hotkeys-hook": "^4.5.1",
"react-i18next": "^15.0.2",
"react-intersection-observer": "^9.13.1",
"react-loader-spinner": "^6.1.6",
"react-query": "^3.39.3",
"react-redux": "^9.1.2",
"react-router-dom": "^6.26.2",
"react-router-hash-link": "^2.4.3",
"react-scripts": "^5.0.1",
"react-select": "^5.8.1",
"react-simple-image-viewer": "1.2.2",
"react-switch": "^7.0.0",
"react-syntax-highlighter": "^15.5.0",
"react-table": "^7.8.0",
"react-zoom-pan-pinch": "^3.6.1",
"resize-observer-polyfill": "^1.5.1",
"source-map-explorer": "^2.5.3",
"victory": "^37.1.1"
},
"jest": {
"transformIgnorePatterns": []
},
"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"
]
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all",
"tabWidth": 4
}
}