-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
62 lines (62 loc) · 1.63 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
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"deploy": "fly deploy --remote-only",
"dev": "remix dev",
"start": "remix-serve build"
},
"prisma": {
"seed": "ts-node --compiler-options {\"module\":\"CommonJS\"} ./prisma/seed.ts"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.6",
"@chakra-ui/react": "^2.2.6",
"@chakra-ui/styled-system": "^2.2.5",
"@emotion/react": "^11.10.0",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@prisma/client": "^4.3.1",
"@remix-run/node": "^1.6.7",
"@remix-run/react": "^1.6.7",
"@remix-run/serve": "^1.6.7",
"@remix-validated-form/with-zod": "^2.0.1",
"ace-builds": "^1.12.1",
"axios": "^1.1.3",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"bson": "^4.6.5",
"chance": "^1.1.9",
"framer-motion": "^6.5.1",
"isbot": "^3.6.1",
"marked": "^4.0.18",
"react": "^18.2.0",
"react-ace": "^10.1.0",
"react-dom": "^18.2.0",
"react-icons": "^4.6.0",
"remix-utils": "^3.3.0",
"remix-validated-form": "^4.5.5",
"tiny-invariant": "^1.2.0",
"validatorjs": "^3.22.1",
"zod": "^3.19.1"
},
"devDependencies": {
"@remix-run/dev": "^1.6.7",
"@remix-run/eslint-config": "^1.6.7",
"@types/bcryptjs": "^2.4.2",
"@types/chance": "^1.1.3",
"@types/marked": "^4.0.3",
"@types/node": "^18.7.2",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@types/validatorjs": "^3.15.0",
"eslint": "^8.20.0",
"prisma": "^4.3.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}