-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.29 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
78
79
80
81
82
83
84
85
86
87
88
{
"name": "marlin",
"version": "0.0.1",
"private": true,
"engines": {
"node": ">= 8"
},
"description": "Server app boilerplate based on Koa 2.x",
"main": "src/index.js",
"license": "MIT",
"dependencies": {
"babel-core": "^6.26.0",
"babel-plugin-syntax-flow": "^6.18.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"chalk": "^2.3.1",
"codecov": "^3.0.0",
"dataloader": "^1.4.0",
"dotenv": "^5.0.0",
"glob": "^7.1.2",
"graphql": "^0.13.1",
"jsonwebtoken": "^8.1.1",
"kcors": "^2.2.1",
"knex": "^0.14.3",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-convert": "^1.2.0",
"koa-graphql": "^0.7.5",
"koa-logger": "^3.1.0",
"koa-router": "^7.4.0",
"ramda": "^0.25.0",
"sqlite3": "^3.1.13",
"uuid": "^3.2.1"
},
"scripts": {
"start": "node src/index",
"start:dev": "nodemon src/index",
"lint": "eslint --ext .js .",
"test:unit": "jest src/",
"test:integration": "jest --runInBand --forceExit tests/",
"test": "jest --runInBand --forceExit ",
"test:coverage": "jest --runInBand --forceExit --coverage && codecov",
"migrate:make": "knex migrate:make",
"migrate:latest": "knex migrate:latest",
"migrate:rollback": "knex migrate:rollback",
"seed:make": "knex seed:make",
"seed:run": "knex seed:run",
"precommit": "lint-staged"
},
"lint-staged": {
"{src,tests}/**/*.js": [
"eslint"
]
},
"devDependencies": {
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"eslint": "^4.17.0",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-flowtype": "^2.43.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.9.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"flow-bin": "^0.66.0",
"husky": "^0.14.3",
"jest": "^22.3.0",
"lint-staged": "^6.1.0",
"nodemon": "^1.14.12",
"supertest": "^3.0.0"
},
"jest": {
"modulePathIgnorePatterns": [
"<rootDir>/coverage",
"<rootDir>/flow-typed",
"<rootDir>/knex"
],
"testEnvironment": "node"
},
"now": {
"engines": {
"node": "8.x.x"
}
}
}