-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.29 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
{
"name": "remix-chat",
"version": "1.0.0",
"description": "Simple chat app using Remix and node",
"main": "server.js",
"scripts": {
"build": "remix build",
"dev": "remix build && run-p dev:*",
"dev:node": "cross-env NODE_ENV=development nodemon ./server.js --watch ./server.js",
"dev:remix": "remix watch",
"format": "prettier --write .",
"lint": "eslint --fix --cache --cache-location ./node_modules/.cache/eslint .",
"typecheck": "tsc -b",
"start": "cross-env NODE_ENV=production node ./server.js"
},
"author": "leafchild0",
"license": "MIT",
"dependencies": {
"@remix-run/express": "^1.19.3",
"@remix-run/node": "^1.19.3",
"@remix-run/react": "^1.19.3",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"lru-cache": "^10.0.1",
"morgan": "^1.10.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@remix-run/dev": "^1.19.3",
"@remix-run/eslint-config": "^1.19.3",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"daisyui": "^3.7.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2"
}
}