This repository has been archived by the owner on Jul 24, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
64 lines (64 loc) · 1.81 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
{
"name": "@reactioncommerce/api-base",
"version": "0.3.0",
"description": "A GraphQL API base",
"author": "Jeremy Shimko <[email protected]>",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/reactioncommerce/reaction-api-base.git"
},
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"build": "rimraf dist && babel src -d dist --copy-files",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"prepublish": "yarn run build",
"serve": "NODE_ENV=production node dist/index.js",
"start": "nodemon --watch src --ext js,graphql --exec 'yarn run build && node dist/index.js'"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "7.2.3",
"babel-plugin-lodash": "3.2.11",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-2": "6.24.1",
"dotenv": "4.0.0",
"eslint": "4.6.1",
"eslint-plugin-babel": "4.1.2",
"mongodb-prebuilt": "6.3.3",
"nodemon": "1.12.0",
"rimraf": "2.6.1"
},
"dependencies": {
"babel-runtime": "6.26.0",
"bcryptjs": "2.4.3",
"body-parser": "1.18.0",
"bunyan": "2.0.0",
"bunyan-format": "0.2.1",
"cors": "2.8.4",
"dataloader": "1.3.0",
"express": "4.15.4",
"graphql": "0.11.3",
"graphql-iso-date": "3.3.0",
"graphql-server-express": "1.1.2",
"graphql-subscriptions": "0.4.4",
"graphql-tools": "1.2.2",
"jwt-simple": "0.5.1",
"lodash": "4.17.4",
"mongo-find-by-ids": "1.0.0",
"mongodb": "2.2.31",
"node-loggly-bulk": "2.0.0",
"nodeify": "1.0.1",
"optics-agent": "1.1.6",
"passport": "0.4.0",
"passport-jwt": "2.2.1",
"pluralize": "7.0.0",
"subscriptions-transport-ws": "0.8.3",
"url": "0.11.0"
}
}