-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "e-wallet-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node ./dist/server.js",
"build": "babel -d ./dist ./src",
"dev": "nodemon --exec babel-node ./src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Endowmissy/E-wallet-app.git"
},
"author": "Ayomikun Emmanuel",
"license": "ISC",
"bugs": {
"url": "https://github.com/Endowmissy/E-wallet-app/issues"
},
"homepage": "https://github.com/Endowmissy/E-wallet-app#readme",
"dependencies": {
"@babel/runtime": "^7.9.2",
"axios": "^0.21.1",
"bcrypt-nodejs": "0.0.3",
"bcryptjs": "^2.4.3",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"ejs": "^3.0.1",
"express": "^4.17.1",
"express-flash": "0.0.2",
"express-session": "^1.17.0",
"express-validator": "^5.3.1",
"helmet": "^3.22.0",
"moment": "^2.24.0",
"mongoose": "^5.9.7",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nodemailer": "^6.4.16",
"passport": "^0.4.1",
"passport-local": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"nodemon": "^2.0.2",
"prettier": "^2.0.4"
}
}