-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.15 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
{
"name": "express-starter",
"version": "1.0.0",
"description": "",
"main": "src/server.ts",
"scripts": {
"dev:ts": "tsc -w",
"dev:js": "nodemon build/server.js",
"dev": "concurrently npm:dev:*",
"build": "tsc",
"start": "node build/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Nova-Solutions-LK/express-starter.git"
},
"author": "Nova Solutions",
"license": "ISC",
"bugs": {
"url": "https://github.com/Nova-Solutions-LK/express-starter/issues"
},
"homepage": "https://github.com/Nova-Solutions-LK/express-starter#readme",
"dependencies": {
"@redis/json": "^1.0.4",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"http-status-codes": "^2.2.0",
"joi": "^17.9.2",
"jsonwebtoken": "^9.0.0",
"jwt-decode": "^3.1.2",
"mongoose": "^7.2.0",
"redis": "^4.6.7",
"redis-om": "^0.3.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.2",
"nodemon": "^2.0.22"
}
}