-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.49 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
{
"name": "remix-openai-sse",
"private": true,
"sideEffects": false,
"scripts": {
"clean": "rimraf node_modules/.cache .cache build public/build",
"build": "remix build",
"dev": "remix dev -c \"node server.js\"",
"start": "cross-env NODE_ENV=production node ./server.js",
"typecheck": "tsc",
"lint": "eslint --cache --cache-location node_modules/.cache/.eslintcache .",
"format": "prettier --write --cache --cache-location=node_modules/.cache/.prettiercache ."
},
"dependencies": {
"@remix-run/css-bundle": "^1.16.0",
"@remix-run/express": "^1.16.0",
"@remix-run/node": "^1.16.0",
"@remix-run/react": "^1.16.0",
"@remix-run/serve": "^1.16.0",
"compression": "^1.7.4",
"cross-env": "^7.0.3",
"express": "^4.18.2",
"isbot": "^3.6.10",
"morgan": "^1.10.0",
"openai": "^3.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"remix-utils": "^6.3.0"
},
"devDependencies": {
"@remix-run/dev": "^1.16.0",
"@remix-run/eslint-config": "^1.16.0",
"@types/compression": "^1.7.2",
"@types/eslint": "^8.37.0",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"dotenv": "^16.0.3",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"rimraf": "^5.0.0",
"typescript": "^4.9.5"
},
"engines": {
"node": "18"
},
"prettier": {}
}