-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.21 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.21 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
42
43
44
45
46
47
48
{
"name": "scs-api",
"description": "CMU:SCS GraphQL API",
"author": "seckel@scs.cmu.edu",
"contributors": [
{
"author": "Ryan Bungard",
"email": "ryanbungard@cmu.edu"
}
],
"version": "2.0.0",
"repository": "https://github.com/SchoolofComputerScience/scs-api",
"engines": {
"node": "8.2.1",
"npm": ">=5.0"
},
"license": "MIT",
"scripts": {
"build": "npm run clean && babel src -d dist",
"clean": "rm -rf dist && mkdir dist",
"dev": "nodemon src/server.js --exec babel-node",
"start": "node dist/server.js",
"test": "mocha --compilers js:babel-register --require babel-polyfill"
},
"dependencies": {
"compression": "^1.6.2",
"cors": "^2.8.3",
"dotenv": "^4.0.0",
"express": "^4.15.3",
"express-graphql": "^0.6.6",
"graphql": "^0.10.3",
"graphql-server-express": "^1.0.0",
"graphql-tag": "^2.4.2",
"helmet": "^3.6.1",
"moment": "^2.24.0",
"mongoose": "4.11.4",
"mysql2": "^1.5.2",
"prismic.io": "^3.5.7",
"sequelize": "^5.3.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"mocha": "^3.4.2",
"nodemon": "^1.11.0"
}
}