forked from SchoolofComputerScience/scs-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 756 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 756 Bytes
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
{
"name": "scs-api",
"description": "CMU:SCS GraphQL API",
"author": "seckel@scs.cmu.edu",
"version": "1.0.0",
"repository": "https://github.com/SchoolofComputerScience/scs-api",
"engines": {
"node": "7.7.1"
},
"scripts": {
"dev": "nodemon --exec npm start",
"start": "node server.js",
"test": "echo \"no tests for today.\" && exit 0"
},
"dependencies": {
"compression": "^1.6.2",
"cors": "^2.8.1",
"dotenv": "^4.0.0",
"express": "^4.15.2",
"express-graphql": "^0.6.4",
"graphql": "^0.9.1",
"graphql-server-express": "^0.7.1",
"graphql-tag": "^2.0.0",
"helmet": "^3.5.0",
"mongoose": "^4.9.0",
"prismic.io": "^3.5.0"
},
"devDependencies": {
"nodemon": "^1.11.0"
}
}