-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "htools-calendar",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix build",
"dev-old": "remix dev --manual",
"dev-old2": "remix dev -c './server/index.js'",
"start-old": "remix-serve ./build/index.js",
"dev": "remix dev --manual -c \"node --watch server/index.js\"",
"start": "cross-env NODE_ENV=production node ./server/index.js",
"typecheck": "tsc"
},
"dependencies": {
"@nextui-org/react": "^2.2.9",
"@remix-run/css-bundle": "^2.2.0",
"@remix-run/node": "^2.2.0",
"@remix-run/react": "^2.2.0",
"@remix-run/serve": "^2.2.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.10",
"framer-motion": "^10.16.5",
"hsd": "^6.1.1",
"isbot": "^3.6.8",
"react": "^18.2.0",
"react-confetti": "^6.1.0",
"react-dom": "^18.2.0",
"react-use": "^17.4.0",
"socket.io": "^4.7.2",
"socket.io-client": "^4.7.2"
},
"devDependencies": {
"@remix-run/dev": "^2.2.0",
"@remix-run/eslint-config": "^2.2.0",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"eslint": "^8.38.0",
"tailwindcss": "^3.3.5",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18.0.0"
}
}