forked from ianlucas/cs2-inventory-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.63 KB
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
{
"name": "@ianlucas/cs2-inventory-simulator",
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"deploy": "npx @ianlucas/deploy@latest",
"dev": "remix vite:dev",
"format": "prettier . --write",
"start": "remix-serve ./build/server/index.js",
"typecheck": "tsc",
"upgrade": "npx npm-check-updates@latest --target minor -u"
},
"dependencies": {
"@floating-ui/react": "^0.26.11",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-brands-svg-icons": "^6.5.2",
"@fortawesome/free-regular-svg-icons": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"@ianlucas/cslib": "^14.2.0",
"@ianlucas/remix-auth-steam": "^2.0.2",
"@prisma/client": "^5.12.1",
"@remix-run/node": "^2.8.1",
"@remix-run/react": "^2.8.1",
"@remix-run/serve": "^2.8.1",
"@uidotdev/usehooks": "^2.4.1",
"clsx": "^2.1.0",
"isbot": "^3.8.0",
"prisma": "^5.12.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.6.0",
"remix-typedjson": "^0.4.1",
"remix-utils": "^7.5.0",
"steamapi": "^3.0.8",
"tiny-invariant": "^1.3.3",
"tsx": "^4.7.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@remix-run/dev": "^2.8.1",
"@types/node": "^18.19.30",
"@types/react": "^18.2.74",
"@types/react-dom": "^18.2.24",
"prettier": "^3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-tsconfig-paths": "^4.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}