-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
82 lines (82 loc) · 2.31 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "apollo-graphql-mongo-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production nodemon --exec babel-node ./src/app.js",
"dev": "NODE_ENV=dev DEBUG=API:* nodemon --exec babel-node ./src/app.js",
"test": "./node_modules/.bin/mocha --require @babel/register --exit",
"lint": "eslint . --ext .js",
"fix": "eslint . --fix --ext .js && git add ."
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"pre-push": "npm run lint"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Swap76/Apollo-GraphQL-Mongo-Boilerplate.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Swap76/Apollo-GraphQL-Mongo-Boilerplate/issues"
},
"homepage": "https://github.com/Swap76/Apollo-GraphQL-Mongo-Boilerplate#readme",
"dependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/node": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@babel/register": "^7.10.1",
"@hapi/joi": "^15.1.0",
"apollo-server": "^2.14.2",
"apollo-server-express": "^2.14.2",
"babel-eslint": "^8.2.6",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"cachegoose": "^8.0.0",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"child_process": "^1.0.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.4",
"debug": "^4.1.1",
"dotenv": "^8.0.0",
"errorhandler": "^1.5.1",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"formidable": "^1.2.1",
"fs": "0.0.1-security",
"graphql": "^14.4.2",
"helmet": "^3.21.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.19",
"mocha": "^7.2.0",
"moment": "^2.26.0",
"mongoose": "^5.9.18",
"mongoose-aggregate-paginate": "^1.1.3",
"mongoose-paginate": "^5.0.3",
"morgan": "^1.9.1",
"nodemailer": "^6.4.8",
"path": "^0.12.7",
"raven": "^2.6.4",
"request": "^2.88.0",
"rimraf": "^3.0.0",
"shortid": "^2.2.15",
"uuid": "^3.3.2",
"validator": "^11.1.0",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.10.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"husky": "^3.0.9",
"nodemon": "^1.19.1"
}
}