-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.89 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "interview-experience-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "nodemon ./src/server.ts",
"clean": "rimraf build/*",
"copy-assets": "node tools/copyAssets.js",
"tsc": "tsc",
"build": "npm-run-all clean tsc copy-assets",
"start": "node build/server.js",
"production": "npm run build && npm run start",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"html-to-text": "^9.0.4",
"jsonwebtoken": "^9.0.0",
"mongodb": "^4.13.0",
"mongoose": "^6.9.0",
"node-cron": "^3.0.2",
"nodemailer": "^6.9.1",
"nodemailer-express-handlebars": "^6.0.0",
"nodemon": "^2.0.20",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.16",
"@types/html-to-text": "^9.0.0",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.11.18",
"@types/node-cron": "^3.0.8",
"@types/nodemailer": "^6.4.7",
"@types/nodemailer-express-handlebars": "^4.0.2",
"@types/passport": "^1.0.12",
"@types/passport-google-oauth20": "^2.0.12",
"@types/ping": "^0.4.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.3",
"shelljs": "^0.8.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}