-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 2.23 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
{
"name": "ibcol-micro-graphql-api",
"version": "1.1.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run local",
"local": "PORT=4000 NOW_CONFIG=now-local.json nodemon index.js",
"dev": "PORT=4000 NOW_CONFIG=now-dev.json node index.js",
"stage": "PORT=4000 NOW_CONFIG=now-stage.json node index.js",
"production": "PORT=4000 NOW_CONFIG=now-production.json node index.js",
"deploy": "npm run deploy-stage",
"deploy-dev": "now --local-config=now-dev.json --scope bbi --target production",
"deploy-stage": "now --local-config=now-stage.json --scope ibcol --target production",
"deploy-production": "now --local-config=now-production.json --scope ibcol --target production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ibcol/ibcol-micro-graphql-api.git"
},
"keywords": [
"micro",
"api",
"now",
"graphql",
"apollo",
"ibcol"
],
"author": {
"name": "Breaking Bad Interactive",
"email": "[email protected]",
"url": "http://bbi.io"
},
"contributors": [
{
"name": "William Li",
"email": "[email protected]",
"url": "http://williamli.io"
}
],
"license": "UNLICENSED",
"dependencies": {
"@accounts/graphql-api": "^0.3.0-beta.28",
"@accounts/mongo": "^0.3.0-beta.28",
"@accounts/password": "^0.3.0-beta.28",
"@accounts/rest-express": "^0.3.0-beta.28",
"@accounts/server": "^0.3.0-beta.28",
"@sendgrid/mail": "^6.3.1",
"apollo-server": "^2.4.8",
"axios": "^0.18.0",
"chalk": "^2.4.1",
"crypto-js": "^3.1.9-1",
"graphql": "^14.0.2",
"graphql-tools": "^4.0.0",
"graphql-type-json": "^0.3.0",
"lodash": "^4.17.11",
"lodash-checkit": "^2.3.0",
"mailchimp-api-v3": "^1.12.0",
"micro": "^9.3.3",
"micro-cors": "^0.1.0",
"microrouter": "^3.1.3",
"mongoose": "^5.2.17",
"now-micro": "^0.3.0",
"pluralize": "^7.0.0",
"randomstring": "^1.1.5",
"update-immutable": "^1.5.0"
},
"devDependencies": {
"micro-dev": "^3.0.0",
"nodemon": "^1.18.11",
"now-env": "^3.1.0"
},
"bugs": {
"url": "https://github.com/ibcol/ibcol-micro-graphql-api/issues"
},
"homepage": "https://github.com/ibcol/ibcol-micro-graphql-api#readme"
}