-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
65 lines (65 loc) · 2.05 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
{
"name": "@ianlucas/cs2-inventory-simulator",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "react-router build",
"deploy": "npx @ianlucas/deploy@latest",
"dev": "react-router dev",
"format": "prettier . --write",
"localize": "tsx scripts/localize.ts && prettier app/localizations/*.ts --write",
"postinstall": "if [ \"$NODE_ENV\" != \"production\" ]; then tsx scripts/postinstall.ts; fi",
"start": "react-router-serve ./build/server/index.js",
"test": "vitest",
"typecheck": "react-router typegen && tsc",
"upgrade": "npx npm-check-updates@latest --target minor -u"
},
"dependencies": {
"@floating-ui/react": "^0.27.3",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@ianlucas/cs2-lib": "^5.9.1",
"@ianlucas/cs2-lib-inspect": "^3.2.0",
"@ianlucas/remix-auth-steam": "^5.0.1",
"@prisma/client": "^6.3.0",
"@react-router/fs-routes": "^7.1.4",
"@react-router/node": "^7.1.4",
"@react-router/serve": "^7.1.4",
"@uidotdev/usehooks": "^2.4.1",
"clsx": "^2.1.1",
"country-flag-icons": "^1.5.14",
"dotenv": "^16.4.7",
"isbot": "^5.1.22",
"lz-string": "^1.5.0",
"prisma": "^6.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.1.4",
"remix-auth": "^4.1.0",
"remix-utils": "^8.1.0",
"steamapi": "^3.0.12",
"tsx": "^4.19.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@react-router/dev": "^7.1.4",
"@types/node": "^20.17.16",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"happy-dom": "^16.8.1",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^3.4.17",
"terser": "^5.37.0",
"typescript": "^5.7.3",
"vite": "^6.0.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.4"
},
"engines": {
"node": ">=20.0.0"
}
}