-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.2 KB
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
{
"name": "nodejs-auth",
"version": "1.0.0",
"description": "A complete nodejs/express authentication app with modern recommended file/project structure",
"main": "index.js",
"scripts": {
"dev": "dotenv -e .env -- node --watch src/server.js",
"start": "dotenv -e .env -- node src/server.js",
"prisma:generate": "dotenv -e .env -- prisma generate",
"prisma:push": "dotenv -e .env -- prisma db push",
"prisma:migrate:dev": "dotenv -e .env -- prisma migrate dev",
"prisma:studio": "dotenv -e .env -- prisma studio"
},
"repository": {
"type": "git",
"url": "git+https://github.com/klevar-jeph/nodejs-auth.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/klevar-jeph/nodejs-auth/issues"
},
"homepage": "https://github.com/klevar-jeph/nodejs-auth#readme",
"dependencies": {
"@prisma/client": "^7.8.0",
"argon2": "^0.44.0",
"connect-redis": "^9.0.0",
"cors": "^2.8.6",
"express": "^5.2.1",
"express-session": "^1.19.0",
"helmet": "^8.2.0",
"morgan": "^1.11.0",
"prisma": "^7.8.0",
"redis": "^6.0.1"
},
"devDependencies": {
"dotenv-cli": "^11.0.0"
}
}