-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (46 loc) · 1.41 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
{
"name": "test-node18",
"type": "module",
"scripts": {
"dev:hono": "tsx watch hono.ts",
"dev": "node index.js --hot",
"test": "node ./test/getArticles.test.js",
"db:studio": "npx prisma studio",
"build": "cd frontend && npm run build",
"update": "cd frontend && npm install && npm run build",
"start": "npm run build && node index.js"
},
"dependencies": {
"@hono/node-server": "^1.8.1",
"hono": "^4.0.5",
"@prisma/client": "^5.10.2",
"axios": "^1.6.7",
"cheerio": "^1.0.0-rc.12",
"cors": "^2.8.5",
"date-fns": "^3.3.1",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"falafel": "^2.2.5",
"ioredis": "^5.3.2",
"lodash": "^4.17.21",
"prisma": "^5.10.2",
"redis": "^4.6.13",
"socket.io": "^4.7.4"
},
"devDependencies": {
"@types/node": "^20.11.20",
"tsx": "^4.7.1",
"@babel/core": "^7.23.9",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"prettier": "^3.2.5"
},
"version": "2.0.0",
"main": "index.js",
"repository": "[email protected]:jesusantguerrero/test-node18.git",
"author": "Jesus Guerrero <[email protected]>",
"license": "MIT",
"private": false
}