-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.4 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
{
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build --sourcemap && sentry-upload-sourcemaps --org banterability --project slow-zone",
"dev": "remix dev",
"lint": "run-p lint:*",
"lint:css": "stylelint \"**/*.css\"",
"lint:js": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"prettier": "prettier --write app/ *.md package.json",
"typecheck": "tsc -b",
"update-data": "node data/convert.js && prettier --write 'data/*json'"
},
"dependencies": {
"@remix-run/node": "2.15.2",
"@remix-run/react": "2.15.2",
"@sentry/remix": "8.47.0",
"@vercel/remix": "2.15.2",
"clsx": "2.1.1",
"geolib": "3.3.4",
"isbot": "5.1.19",
"lodash-es": "4.17.21",
"pretty-cache-header": "1.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"slow-zone": "4.2.0",
"tiny-invariant": "1.3.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@remix-run/dev": "2.15.2",
"@remix-run/eslint-config": "2.15.2",
"@remix-run/serve": "2.15.2",
"@types/react": "18.3.13",
"@types/react-dom": "18.3.1",
"eslint-config-prettier": " 9.1.0",
"lodash": "4.17.21",
"npm-run-all": "4.1.5",
"prettier": "3.4.2",
"stylelint": "16.12.0",
"stylelint-config-standard": "36.0.1",
"typescript": "5.7.2"
},
"engines": {
"node": "18"
}
}