-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "xcafe-api",
"version": "1.0.0",
"description": "API code for xcafe",
"main": "src/index.js",
"scripts": {
"start": "nodemon src/index.js",
"dev": "nodemon src/index.js",
"final": "nodemon final/index.js",
"seed": "node final/util/seed/index.js",
"lint": "eslint \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "[email protected]:petermarshall/xcafe-api.git"
},
"nodemonConfig": {
"ignore": [
"**.test.js"
]
},
"keywords": [],
"author": "Peter Marshall",
"license": "MIT",
"dependencies": {
"apollo-server-express": "2.4.0",
"bcrypt": "3.0.6",
"cors": "2.8.5",
"dotenv": "6.1.0",
"express": "4.16.4",
"express-session": "1.15.6",
"graphql": "^14.1.1",
"graphql-depth-limit": "1.1.0",
"graphql-iso-date": "3.6.1",
"graphql-validation-complexity": "0.2.4",
"helmet": "3.21.2",
"jsonwebtoken": "8.5.1",
"marked": "0.7.0",
"md5": "2.2.1",
"mongoose": "5.7.13",
"nodemon": "1.18.7",
"passport": "0.4.0",
"passport-github2": "0.1.11"
},
"devDependencies": {
"eslint": "5.13.0",
"eslint-config-prettier": "4.0.0",
"eslint-plugin-prettier": "3.0.1",
"faker": "4.1.0",
"node-fetch": "2.5.0",
"prettier": "1.18.2"
}
}