-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
87 lines (87 loc) · 2.36 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
{
"name": "inside-server",
"version": "1.0.0",
"description": "Inside server api",
"main": "index.js",
"scripts": {
"build": "npm run clear && babel src --ignore *.spec.js --out-dir dist --copy-files",
"clear": "rimraf ./dist",
"start": "node dist/index.js",
"debug": "babel-node --inspect src/index.js --presets env,stage-0",
"test": "jest --coverage --forceExit --runInBand",
"test:watch": "jest --watch --coverage",
"watch": "nodemon src/index.js --exec babel-node",
"precommit": "lint-staged",
"commitmsg": "commitlint -e",
"lint": "eslint .",
"release": "standard-version",
"sequelize": "./node_modules/.bin/sequelize",
"migrate": "./node_modules/.bin/sequelize db:migrate",
"seed": "./node_modules/.bin/sequelize db:seed:all"
},
"author": "",
"license": "ISC",
"dependencies": {
"babel-polyfill": "^6.23.0",
"bcryptjs": "^2.4.3",
"boom": "^7.1.1",
"dotenv-safe": "^4.0.4",
"jsonwebtoken": "^8.0.1",
"kcors": "^2.2.1",
"koa": "^2.3.0",
"koa-bodyparser": "^3.2.0",
"koa-compose": "^4.0.0",
"koa-convert": "^1.2.0",
"koa-jwt": "^3.3.0",
"koa-logger": "^2.0.1",
"koa-router": "^7.1.1",
"lodash": "^4.17.4",
"mysql2": "^1.5.1",
"sequelize": "^4.31.0",
"sequelize-cli": "^3.2.0"
},
"devDependencies": {
"@commitlint/cli": "^3.1.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.0.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-import": "^2.3.0",
"husky": "^0.14.3",
"jest": "20.0.4",
"jest-cli": "20.0.4",
"lint-staged": "^4.0.2",
"nodemon": "^1.12.1",
"prettier": "^1.5.3",
"rimraf": "^2.6.1",
"standard-version": "^4.2.0",
"supertest": "^3.0.0"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"./dist",
"/src2"
],
"coverageReporters": [
"lcov",
"html"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"setupFiles": [
"babel-polyfill"
]
},
"lint-staged": {
"*.js": [
"prettier --write --single-quote true --trailing-comma all --print-width 120",
"git add",
"eslint --cache --no-ignore --max-warnings 0"
]
}
}