-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 975 Bytes
/
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
{
"name": "aviary-api",
"version": "0.1.0",
"description": "",
"main": "app.js",
"jest": {
"globals": {
"__IS_REMOTE__": false
}
},
"scripts": {
"test": "./node_modules/jest/bin/jest.js",
"test:remote": "./node_modules/jest/bin/jest.js --config ./test/jest_remote_config.json",
"start": "node server.js",
"bundle": "./node_modules/pkg/lib-es5/bin.js -t node8-linux-x64 -o ./bin/aviary-api ./server.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.2",
"couchpotato-api": "^0.1.0",
"directv-remote": "0.0.3",
"express": "^4.16.3",
"mongodb": "^3.1.10",
"morgan": "^1.9.1",
"myq-node": "^0.1.4",
"mysql": "^2.17.1",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"util-promisify": "^2.1.0"
},
"devDependencies": {
"pkg": "^4.3.3",
"jest": "^23.1.0",
"superagent": "^3.8.3",
"supertest": "^3.1.0"
}
}