forked from javascripteverywhere/api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.36 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
{
"name": "notedly-api",
"version": "1.0.0",
"description": "API code examples for JavaScript Everywhere by Adam Scott, published by O'Reilly Media",
"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]:javascripteverywhere/api.git"
},
"nodemonConfig": {
"ignore": [
"**.test.js"
]
},
"keywords": [],
"author": "Adam Scott",
"license": "MIT",
"dependencies": {
"apollo-server-express": "^2.24.0",
"bcrypt": "^5.0.1",
"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": "2.0.3",
"md5": "2.2.1",
"mongoose": "^5.12.7",
"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",
"gulp": "^4.0.2",
"node-fetch": "^2.6.1",
"prettier": "1.18.2"
}
}