-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.68 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.68 KB
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": "node-functional-boilerplate",
"version": "0.0.1",
"description": "Node.JS Functional Boilerplate",
"main": "index.js",
"license": "MIT",
"author": "ZRP Aplicações <zrp@zrp.com.br>",
"contributors": [
"Giovanni Armane <giovanniarmane@gmail.com>",
"Gustavo Rodarte <guga.rodarte@live.com >",
"Pedro Gryzinsky <p@zrp.com.br>",
"Bernardo Bugmann <bernardo.bugmann@zrp.com.br>",
"Thiérry Barbosa <thierry.santos@zrp.com.br>",
"Nikolas Serafini <nikolas.serafini@zrp.com.br>"
],
"homepage": "https://github.com/zrpaplicacoes/node-functional-boilerplate#readme",
"bugs": {
"url": "https://github.com/zrpaplicacoes/node-functional-boilerplate/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zrpaplicacoes/node-functional-boilerplate.git"
},
"keywords": [
"node",
"boilerplate",
"functional",
"DDD",
"javascript",
"zrp"
],
"scripts": {
"start": "node index.js",
"debug": "nodemon --config nodemon.json --inspect=0.0.0.0 --nolazy",
"test": "NODE_ENV=test jest --runInBand --detectOpenHandles --forceExit",
"coverage": "NODE_ENV=test jest --runInBand --coverage --forceExit",
"tdd": "NODE_ENV=test jest --runInBand --watchAll",
"lint": "eslint . --ext .js --ignore-path .eslintignore",
"lint:fix": "eslint . --ext .js --ignore-path .eslintignore --fix"
},
"dependencies": {
"apollo-server-express": "^2.19.0",
"awilix": "^4.3.1",
"body-parser": "^1.19.0",
"chance": "^1.1.7",
"crocks": "^0.12.4",
"env-var": "^7.0.0",
"express": "^4.17.1",
"graphql": "^15.4.0",
"graphql-import": "^1.0.2",
"helmet": "^4.2.0",
"http-status": "^1.5.0",
"mongoose": "^5.11.8",
"morgan": "^1.10.0",
"superstruct": "^0.13.1",
"winston": "^3.3.3"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"env-cmd": "^10.1.0",
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-disable": "^2.0.1",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"factory-bot": "6.1.4",
"husky": "^4.3.0",
"jest": "^26.6.3",
"jest-diff": "^26.6.2",
"nodemon": "^2.0.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "eslint . --ext .js --ignore-path .eslintignore"
}
}
}