-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "interndigger",
"version": "1.0.0",
"description": "Grab Internship from InternDigger",
"main": "app.js",
"scripts": {
"start": "node server.js",
"sass": "node-sass -w public/scss/ -o public/css/ --recursive",
"dev": "nodemon server.js",
"webpack:dev": "webpack --mode development",
"watch:js": "webpack-dev-server --mode development",
"build:js": "webpack --mode production"
},
"author": "Harshit Kathuria",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/polyfill": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"node-sass": "^4.14.1",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.20.0",
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-rate-limit": "^5.1.3",
"googleapis": "^67.0.0",
"html-to-text": "^6.0.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.10.4",
"morgan": "^1.10.0",
"nodemailer": "^6.4.17",
"parcel-bundler": "^1.12.4",
"validator": "^13.1.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"engines": {
"node": "^14"
}
}