This repository has been archived by the owner on Nov 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.99 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
{
"name": "express-graphql-boilerplate",
"version": "0.0.1",
"description": "This is graphql apis using express",
"main": "server.js",
"scripts": {
"test": "NODE_ENV=test mocha $(find tests -name '*.spec.js') --recursive --exit",
"test:unit": "NODE_ENV=test mocha $(find tests/unit -name '*.spec.js') --recursive --exit",
"test:e2e": "NODE_ENV=test mocha $(find tests/e2e -name '*.spec.js') --recursive --exit",
"start": "NODE_ENV=production node src/server.js",
"lint": "./node_modules/.bin/eslint ./src",
"lint:fix": "./node_modules/.bin/eslint ./src --fix",
"predeploy": "NODE_ENV=production npm install",
"deploy": "NODE_ENV=production npm start",
"dev": "nodemon src/server.js",
"generate": "plop --plopfile src/generator/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vijaykrishnavanshi/express-graphql-boilerplate.git"
},
"keywords": [
"graphql",
"express",
"node",
"mongodb"
],
"author": "Vijay Krishnavanshi",
"license": "MIT",
"bugs": {
"url": "https://github.com/vijaykrishnavanshi/express-graphql-boilerplate/issues"
},
"homepage": "https://github.com/vijaykrishnavanshi/express-graphql-boilerplate#readme",
"dependencies": {
"apollo-server-express": "^2.18.2",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"bunyan": "^1.8.14",
"chai-http": "^4.3.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^15.3.0",
"helmet": "^4.1.1",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.20",
"mongoose": "^5.10.6",
"morgan": "^1.10.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "7.9.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"husky": "^4.3.0",
"mocha": "^8.1.3",
"nodemon": "^2.0.4",
"plop": "^2.7.4",
"prettier": "^2.1.2"
},
"engines": {
"node": ">=8.3.0"
}
}