This repository has been archived by the owner on Sep 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.55 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
{
"private": true,
"sideEffects": false,
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"scripts": {
"build": "npm run build:css && remix build",
"build:css": "tailwindcss -m -i ./styles/app.css -o app/styles/app.css",
"dev": "concurrently \"npm run dev:css\" \"remix dev\"",
"dev:css": "tailwindcss -w -i ./styles/app.css -o app/styles/app.css",
"format": "prettier \"app/**/*.ts\" \"app/**/*.tsx\" --write . "
},
"dependencies": {
"@prisma/client": "^4.6.1",
"@radix-ui/react-icons": "^1.2.0",
"@remix-run/node": "^1.12.0",
"@remix-run/react": "^1.12.0",
"@remix-run/serve": "^1.12.0",
"bcryptjs": "^2.4.3",
"isbot": "^3.5.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-auth": "^3.4.0",
"remix-auth-discord": "^1.2.1",
"remix-auth-form": "^1.3.0",
"remix-auth-github": "^1.3.0",
"remix-auth-socials": "^2.0.4",
"remix-utils": "^6.0.0",
"tiny-invariant": "^1.3.1"
},
"devDependencies": {
"@remix-run/dev": "^1.12.0",
"@remix-run/eslint-config": "^1.12.0",
"@types/bcryptjs": "^2.4.2",
"@types/node": "^18.11.9",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.13",
"concurrently": "^7.5.0",
"eslint": "^8.27.0",
"eslint-plugin-tailwindcss": "^3.6.2",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"prisma": "^4.6.1",
"tailwindcss": "^3.2.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14"
}
}