-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
124 lines (124 loc) · 3.62 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@codetanzania/emis",
"version": "0.0.0",
"description": "WIP",
"main": "index.js",
"scripts": {
"clean": "rimraf lib dist es umd logs",
"lint": "eslint --fix --ext .js test database.js seed.js server.js worker.js ecosystem.config.js",
"pretest": "npm run lint",
"test": "NODE_ENV=test mocha --require @babel/register test/**/*.spec.js",
"test:unit": "npm run pretest && NODE_ENV=test mocha --require @babel/register test/unit/**/*.spec.js",
"test:integration": "npm run pretest && NODE_ENV=test mocha --require @babel/register test/integration/**/*.spec.js",
"cmt": "git add . && git-cz",
"changelog": "changelog",
"chore:deps": "ncu -u && npm install --save",
"chore:cleandeps": "rm -rf node_module && ncu -u && npm install --save"
},
"repository": {
"type": "git",
"url": "https://github.com/CodeTanzania/emis.git"
},
"keywords": [
"codetanzania",
"emis",
"disaster",
"hazard",
"incident",
"emergency",
"risk"
],
"contributors": [
{
"name": "lykmapipo",
"email": "[email protected]",
"url": "https://github.com/lykmapipo"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeTanzania/emis/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/CodeTanzania/emis",
"devDependencies": {
"@babel/cli": "7.14.5",
"@babel/core": "7.14.6",
"@babel/node": "7.14.5",
"@babel/preset-env": "7.14.5",
"@babel/register": "7.14.5",
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/travis-cli": "11.0.0",
"@lykmapipo/express-test-helpers": "0.9.16",
"@lykmapipo/mongoose-test-helpers": "0.8.6",
"chai": "4.3.4",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"doxdox": "3.0.0",
"eslint": "7.28.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "7.2.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-mocha": "8.2.0",
"eslint-plugin-prettier": "3.4.0",
"generate-changelog": "1.8.0",
"handlebars": "4.7.7",
"husky": "4.3.8",
"lint-staged": "10.5.4",
"mocha": "8.4.0",
"npm-check-updates": "10.3.1",
"prettier": "2.3.1",
"rimraf": "3.0.2",
"rollup": "2.51.2"
},
"peerDependencies": {},
"dependencies": {
"@codetanzania/emis-feature": ">=1.4.3",
"@codetanzania/emis-role": ">=1.5.2",
"@codetanzania/emis-stakeholder": ">=1.9.0",
"@lykmapipo/common": "0.43.4",
"@lykmapipo/env": "0.17.34",
"@lykmapipo/express-common": ">=0.17.9",
"@lykmapipo/express-rest-actions": "0.8.28",
"@lykmapipo/file": ">=0.1.6",
"@lykmapipo/i18n": ">=0.1.11",
"@lykmapipo/logger": ">=0.3.6",
"@lykmapipo/mongoose-common": ">=0.25.9",
"@lykmapipo/mongoose-exportable": ">=0.3.6",
"@lykmapipo/permission": ">=0.8.5",
"@lykmapipo/postman": ">=0.10.2",
"@lykmapipo/predefine": ">=0.6.0",
"async": ">=3.1.0",
"express": ">=4.17.1",
"kue": ">=0.11.6",
"kue-scheduler": ">=0.9.4",
"lodash": ">=4.17.15",
"moment": ">=2.24.0",
"moment-timezone": ">=0.5.26",
"mongoose": ">=5.6.7",
"mongoose-geojson-schemas": ">=0.10.8",
"mongoose-kue": ">=0.8.4",
"mongoose-rest-actions": ">=0.28.6",
"redis": ">=2.8.0"
},
"engines": {
"node": ">=12.4.0",
"npm": ">=6.9.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}