-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.81 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
{
"name": "web",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"d": "remix dev -c \"npm run dev:server\" --manual",
"dev:server": "nodemon --exec \"node --experimental-specifier-resolution=node --loader @bleed-believer/path-alias ./server.ts\" --watch ./server.ts",
"start": "cross-env NODE_ENV=production node -r dotenv/config --experimental-specifier-resolution=node --loader @bleed-believer/path-alias ./server.ts",
"typecheck": "tsc",
"hash": "node -r dotenv/config --loader @bleed-believer/path-alias ./cli/hash.ts"
},
"dependencies": {
"@remix-run/css-bundle": "^2.0.1",
"@remix-run/express": "^2.0.1",
"@remix-run/node": "^2.0.1",
"@remix-run/react": "^2.0.1",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"isbot": "^3.6.8",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@bleed-believer/path-alias": "^0.15.2",
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.0.17",
"@remix-run/dev": "^2.0.1",
"@remix-run/eslint-config": "^2.0.1",
"@remix-run/server-runtime": "^2.0.1",
"@types/bcryptjs": "^2.4.2",
"@types/compression": "^1.7.2",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@types/source-map-support": "^0.5.6",
"bcryptjs": "^2.4.3",
"chokidar": "^3.5.3",
"clsx": "^2.0.0",
"dotenv": "^16.3.1",
"eslint": "^8.38.0",
"framer-motion": "^10.16.4",
"nodemon": "^2.0.22",
"postgres": "^3.3.5",
"tailwindcss": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"zod": "^3.22.4"
},
"engines": {
"node": ">=18.0.0"
}
}