-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.34 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": "online-wallet-backend",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "index.js",
"dependencies": {
"bcrypt": "^5.0.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-jwt": "^3.4.0",
"express-validation": "^3.0.8",
"http-status": "^1.5.0",
"joi": "^17.4.0",
"jsonwebtoken": "^7.4.3",
"mongoose": "^5.11.17",
"nodemon": "^2.0.7"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"gulp": "^4.0.2",
"gulp-babel": "^6.1.2",
"gulp-load-plugins": "^1.6.0",
"gulp-nodemon": "^2.5.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "./node_modules/nodemon/bin/nodemon.js --inspect index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ClementRb/online-wallet-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ClementRb/online-wallet-backend/issues"
},
"homepage": "https://github.com/ClementRb/online-wallet-backend#readme"
}