-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.46 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.46 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
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "ts_node_demo",
"version": "1.0.0",
"description": "ts_node_demo",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"build": "tsc",
"start": "node ./dist/src/index.js"
},
"author": "Joseph Omogbehin",
"license": "ISC",
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^18.17.14",
"@types/randomstring": "^1.1.8",
"cookie-parser": "^1.4.6",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/morgan": "^1.9.4",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.11",
"bcrypt": "^5.1.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"googleapis": "^124.0.0",
"joi": "^17.8.3",
"joi-objectid": "^4.0.2",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.1",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"randomstring": "^1.3.0",
"uuid": "^9.0.0",
"uuidv4": "^6.2.13",
"validator": "^13.9.0"
}
}