-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·51 lines (51 loc) · 1.39 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
{
"name": "graphql-example",
"version": "1.0.0",
"description": "GrapthQL example",
"main": "src/index.js",
"scripts": {
"start": "NODE_ENV=production node -r esm src/index.js",
"dev": "NODE_ENV=development nodemon -r esm src/index.js",
"test": "NODE_ENV=test mocha --require esm 'tests/**/*.spec.js'",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"author": "Dmytro Shvaika",
"license": "MIT",
"dependencies": {
"apollo-errors": "^1.9.0",
"apollo-server-express": "^2.17.0",
"bcrypt": "^5.0.0",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"esm": "^3.2.25",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.3.0",
"graphql-middleware": "^4.0.2",
"graphql-shield": "^7.3.6",
"graphql-tools": "^6.2.2",
"handlebars": "^4.7.6",
"handlebars-layouts": "^3.1.4",
"jsonwebtoken": "^8.5.1",
"log4js": "^6.3.0",
"merge-graphql-schemas": "^1.7.8",
"moment": "^2.28.0",
"mongoose": "^5.10.5",
"nodemailer": "^6.4.11",
"passport": "^0.4.1",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-plugin-import": "^2.22.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"sinon": "^9.0.3",
"supertest": "^4.0.2",
"supertest-promised": "^1.0.0"
}
}