-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.85 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
{
"name": "backend-graphql",
"version": "0.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"startdev": "nodemon --exec node -r dotenv/config -r babel-register src/index.js dotenv_config_path=.env.dev",
"regendb": "node -r dotenv/config -r babel-register src/index.js dotenv_config_path=.env.regendb",
"startstats": "TASK=stats-generation DEBUG=dev:*,error:* node -r dotenv/config dist/index.js dotenv_config_path=.env.prod",
"test": "circleci local execute --job build",
"localregendb": "node -r dotenv/config -r babel-register src/index.js dotenv_config_path=.env.test",
"build": "babel -d dist/ src/",
"start": "node -r dotenv/config dist/index.js dotenv_config_path=.env.prod"
},
"author": "Avery Lamp <[email protected]>",
"license": "ISC",
"devDependencies": {
"apollo": "^2.6.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.20.0",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-regenerator": "^6.20.0",
"babel-preset-es2015": "^6.18.0",
"eslint": "^5.15.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"nodemon": "^1.18.10"
},
"dependencies": {
"@sentry/node": "5.1.0",
"apollo-server": "^2.4.2",
"apollo-server-express": "^2.4.2",
"apollo-server-testing": "^2.4.8",
"babel-core": "^6.20.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.3",
"chalk": "^2.4.2",
"cors": "^2.8.5",
"debug": "^4.1.1",
"dotenv": "^7.0.0",
"express": "^4.16.4",
"firebase-admin": "^7.0.0",
"geolib": "^2.0.24",
"graphql": "^14.1.1",
"graphql-tag": "^2.10.1",
"grpc": "^1.22.2",
"lodash": "^4.17.11",
"mongo-dot-notation": "^1.2.0",
"mongoose": "^5.4.13",
"nanoid": "^2.0.1",
"node-dogstatsd": "^0.0.7",
"request": "^2.88.0",
"twilio": "^3.29.0"
}
}