-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.74 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
{
"name": "unifemga-backend",
"version": "1.0.0",
"description": "loaning app",
"main": "index.js",
"scripts": {
"build": "babel -d ./build ./src -s",
"start": "npm run build && node ./build/index.js",
"dev": "nodemon ./src/index --exec babel-node",
"lint": "npx eslint ./src --fix"
},
"repository": {
"type": "git",
"url": "git+https://[email protected]/naimah_d/unifemga-backend.git"
},
"author": "Digital Pulse",
"license": "ISC",
"homepage": "https://bitbucket.org/naimah_d/unifemga-backend#readme",
"dependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/node": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@babel/runtime-corejs3": "^7.5.5",
"@hapi/joi": "^15.1.1",
"apollo-server": "^2.11.0",
"apollo-server-express": "^2.11.0",
"babel-eslint": "^10.0.3",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"core-js": "^3.2.1",
"cors": "^2.8.4",
"cross-env": "^5.2.0",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"express": "^4.16.3",
"express-jwt": "^5.3.1",
"graphql": "^14.6.0",
"jsonwebtoken": "^8.3.0",
"methods": "^1.1.2",
"mongoose": "^5.9.7",
"nodemailer": "^6.4.6",
"nodemailer-mailgun-transport": "^2.0.0",
"path": "^0.12.7",
"shortid": "^2.2.15"
},
"devDependencies": {
"coveralls": "^3.0.6",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-import": "^2.18.2",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0",
"morgan": "^1.9.1",
"nodemon": "^1.19.1",
"nyc": "^14.1.1",
"request": "^2.88.0"
}
}