-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 KB
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
{
"name": "calvinchan-book-api",
"version": "1.0.0",
"description": "Pro MERN Stack API",
"main": "index.js",
"engines": {
"node": "10.x",
"npm": "6.x"
},
"scripts": {
"start": "nodemon -e js,graphql -w . -w .env server.js",
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.ccs.neu.edu/NEU-CS5610-SU20/CalvinChan-Book.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"apollo-graphql": "^0.4.4",
"apollo-server-core": "^2.12.0",
"apollo-server-express": "^2.9.9",
"body-parser": "^1.18.3",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "^4.17.1",
"google-auth-library": "^2.0.2",
"graphql": "^0.13.2",
"jsonwebtoken": "^8.5.1",
"mongodb": "^3.3.5",
"nodemon": "^1.19.4"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.20.2"
}
}