-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "keebtrack-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"postinstall": "rm -rf dist && npx babel src --out-dir dist",
"dev": "NODE_ENV=development nodemon dev.js | bunyan -o short",
"sync-groupbuys": "NODE_ENV=production node bin/sync-groupbuys.js",
"sync-vendors": "NODE_ENV=production node bin/sync-vendors.js",
"sync-calendar": "NODE_ENV=production node bin/create-calendar.js",
"start": "NODE_ENV=production node dist/server.js"
},
"engines": {
"node": "8.9.4",
"npm": "5.6.x"
},
"author": "",
"license": "ISC",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-inline-import": "^2.0.6",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-register": "^6.26.0"
},
"dependencies": {
"apollo-server-express": "^1.3.2",
"bluebird": "^3.5.1",
"bunyan": "^1.8.12",
"convict": "^4.0.2",
"cors": "^2.8.4",
"express": "^4.16.2",
"googleapis": "^29.0.0",
"graphql": "^0.13.1",
"graphql-date": "^1.0.3",
"graphql-tools": "^2.21.0",
"ical-generator": "^0.2.10",
"node-sheets": "^1.0.0",
"pg": "^7.4.1",
"ramda": "^0.25.0",
"rss": "^1.2.2",
"sequelize": "^4.35.2",
"sequelize-cursor-pagination": "^1.0.3"
}
}