-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.57 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
{
"name": "krokelo",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"deploy:db": "prisma migrate deploy",
"dev": "remix dev --manual",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"prettier:fix": "prettier . --write",
"prettier": "prettier . --check",
"setup:db": "prisma migrate dev",
"start": "remix-serve build/index.js",
"typecheck": "tsc --build tsconfig.json && :"
},
"dependencies": {
"@prisma/client": "^5.7.1",
"@remix-run/css-bundle": "^2.4.0",
"@remix-run/node": "^2.4.0",
"@remix-run/react": "^2.4.0",
"@remix-run/serve": "^2.4.0",
"elo-rank": "^1.0.4",
"fuse.js": "^7.0.0",
"isbot": "^3.6.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-select": "^5.8.0",
"recharts": "^2.10.3",
"remix-typedjson": "^0.4.1"
},
"devDependencies": {
"@remix-run/dev": "^2.4.0",
"@types/elo-rank": "^1.0.3",
"@types/react-dom": "^18.2.7",
"@types/react": "^18.2.20",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react": "^7.33.2",
"eslint": "^8.38.0",
"prettier-plugin-tailwindcss": "^0.5.11",
"prettier": "^3.2.4",
"prisma": "^5.7.1",
"tailwindcss": "^3.4.0",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}