-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.83 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "commentary-api",
"version": "0.0.1",
"description": "GraphQL API server for the CHS Commentaries and Community",
"main": "server.js",
"dependencies": {
"apollo-errors": "^1.4.0",
"aws-sdk": "^2.86.0",
"base64url": "^2.0.0",
"body-parser": "^1.17.2",
"check-types": "^7.1.5",
"connect-mongodb-session": "^1.3.0",
"cookie-parser": "^1.4.3",
"cors": "^2.8.4",
"dataloader": "^1.3.0",
"dotenv": "^4.0.0",
"email-templates": "^2.7.1",
"eventemitter3": "^2.0.3",
"express": "4.15.3",
"express-session": "^1.15.3",
"graphql": "^0.10.3",
"graphql-errors": "^2.1.0",
"graphql-redis-subscriptions": "^1.2.0",
"graphql-server-express": "^1.0.2",
"handlebars": "^4.0.10",
"jsonwebtoken": "^7.4.1",
"languages": "^0.1.3",
"mdi": "^2.0.46",
"mongoose": "^4.11.12",
"mongoose-paginate": "^5.0.3",
"mongoose-schema-to-graphql": "^2.5.7",
"mongoose-timestamp": "^0.6.0",
"mongoose-type-email": "^1.0.5",
"mongoose-type-url": "^1.0.2",
"mongoose-url-slugs": "^1.0.0",
"morgan": "^1.8.2",
"nodemailer": "^4.1.0",
"oauth-shim": "^1.1.1",
"passport": "^0.3.2",
"passport-jwt": "^2.2.1",
"passport-local-mongoose": "^4.0.0",
"react-autocomplete": "^1.5.10",
"react-s3-uploader": "^4.2.0",
"request": "^2.81.0",
"subscriptions-transport-ws": "^0.8.1",
"twitter": "^1.7.1",
"uuid": "^3.1.0",
"zxcvbn": "^4.4.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-jest": "^20.0.3",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-1": "^6.24.1",
"babel-tape-runner": "^2.0.1",
"concurrently": "^3.4.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.3.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"faker": "^4.1.0",
"faucet": "^0.0.1",
"flow-bin": "^0.51.0",
"jest": "^20.0.4",
"nodemon": "^1.11.0",
"regenerator-runtime": "^0.10.5",
"shortid": "^2.2.8"
},
"scripts": {
"lint": "eslint .",
"test": "jest --config ./jest.config.js",
"server": "NODE_ENV=development nodemon ./src/index.js --exec babel-node",
"start": "npm run server",
"db-seed": "babel-node scripts/run-db-seed.js",
"db-clear": "babel-node scripts/run-db-clear.js",
"db-setup": "npm run db-clear && npm run db-seed"
},
"repository": {
"type": "git",
"url": "[email protected]:archimedes/orpheus-api.git"
},
"author": "Archimedes Digital",
"license": "MIT"
}