-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.07 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
{
"name": "cloud-auth-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:dev": "npx tsc",
"prisma:gen": "npx prisma generate",
"build": "npm run prisma:gen && npx tsc",
"start": "node dist/index.js",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@prisma/client": "^5.9.1",
"connect-redis": "^7.1.1",
"cookie": "^0.5.0",
"cors": "^2.8.5",
"dotenv": "^16.4.1",
"ethers": "^6.10.0",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"express-session": "^1.18.0",
"ioredis": "^5.3.2",
"jsonwebtoken": "^9.0.2",
"siwe": "^2.1.4"
},
"devDependencies": {
"@types/cookie": "^0.5.4",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/express-session": "^1.17.10",
"@types/jsonwebtoken": "^9.0.5",
"@types/node": "^18.19.14",
"concurrently": "^7.6.0",
"nodemon": "^3.0.3",
"prisma": "^5.9.1",
"typescript": "^4.9.5"
}
}