-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.5 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
{
"name": "rocket",
"version": "0.1.0",
"description": "An IoT server for managing plants. Might become broader later on.",
"main": "src/index.js",
"repository": "https://github.com/hmorgancode/rocket",
"license": "MIT",
"start": "node -r dotenv/config dist/index.js",
"scripts": {
"test": "jest"
},
"jest": {
"collectCoverage": false,
"collectCoverageFrom": [
"dist/**/*.js"
],
"coverageDirectory": "<rootDir>/coverage/",
"testPathIgnorePatterns": [
"<rootDir>/src/",
"<rootDir>/groot/"
]
},
"dependencies": {
"apollo-server-koa": "^1.0.2",
"bluebird": "^3.5.0",
"dotenv": "^4.0.0",
"graphql": "^0.10.5",
"graphql-date": "1.0.3",
"graphql-tools": "^1.1.0",
"johnny-five": "^0.11.1",
"kcors": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "^4.2.0",
"koa-compose": "^4.0.0",
"koa-helmet": "^3.2.0",
"koa-multer": "^1.0.1",
"koa-router": "^7.2.1",
"koa-static": "^4.0.1",
"mongodb": "^2.2.30",
"mongoose": "^4.11.1",
"sanitize-filename": "^1.6.1"
},
"devDependencies": {
"babel-jest": "^20.0.3",
"babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"casual": "^1.5.14",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-git": "^2.4.1",
"gulp-nodemon": "^2.2.1",
"gulp-plumber": "^1.1.0",
"gulp-run": "^1.7.1",
"gulp-watch": "^4.3.11",
"gulp-yarn": "^1.0.0",
"jest": "^20.0.4"
}
}