-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.06 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
{
"name": "guidebook",
"version": "1.0.0",
"description": "Guidebook is a project that seeks to teach, through code, principles and best practices when writing NodeJS applications.",
"main": "dist/server.js",
"scripts": {
"build": "babel src -d dist",
"start": "node dist/server.js",
"start:dev": "nodemon src/server.js --exec babel-node",
"test": "jest --verbose",
"test:coverage": "npm test -- --coverage",
"lint": "eslint \"**/*.js\" ",
"lint:fix": "npm run lint -- --fix",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/biblicalph/guidebook.git"
},
"keywords": [
"node",
"nodejs",
"koa",
"koajs"
],
"author": "kwabena boadu<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/biblicalph/guidebook/issues"
},
"homepage": "https://github.com/biblicalph/guidebook#readme",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.6.0",
"bson-objectid": "^1.2.4",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.9.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.0",
"faker": "^4.1.0",
"husky": "^1.2.0",
"jest": "^24.1.0",
"lint-staged": "^8.1.0",
"nodemon": "^1.18.7",
"prettier": "^1.15.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint"
}
},
"lint-staged": {
"{src|test}/**/*.js": [
"npm run lint:fix",
"git add"
]
},
"dependencies": {
"bluebird": "^3.5.3",
"joi": "^14.3.1",
"lodash": "^4.17.11",
"mongoose": "^5.4.3",
"mongoose-beautiful-unique-validation": "^7.1.1"
}
}