-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "nodejs-auth-with-acl",
"version": "1.0.0",
"description": "Nodejs Authentication and Authorization",
"main": "app.ts",
"scripts": {
"build": "tsc --outDir dist",
"dev": "nodemon --exec ts-node --project tsconfig.json src/server.ts",
"start": "NODE_ENV=production node dist/server.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/osmanakol/nodejs-auth-with-acl.git"
},
"keywords": [
"nodejs",
"authorization",
"authentication",
"nodejs",
"expressjs",
"acl",
"typescript"
],
"author": "Osman Akol",
"license": "ISC",
"bugs": {
"url": "https://github.com/osmanakol/nodejs-auth-with-acl/issues"
},
"homepage": "https://github.com/osmanakol/nodejs-auth-with-acl#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/connect-redis": "^0.0.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/ioredis": "^4.26.7",
"@types/node": "^16.7.1",
"mongoose": "^5.13.8",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.8",
"typescript": "^4.3.5"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"connect-redis": "^6.0.0",
"express": "^4.17.1",
"express-session": "^1.17.2",
"ioredis": "^4.27.8"
}
}