-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
120 lines (120 loc) · 2.87 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
{
"name": "emis-web",
"version": "0.0.0",
"description": "A collaboration platform that facilitates communication, planning and actions for disaster management.",
"main": "index.js",
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"commit": "git-cz",
"commit:all": "git add -A && git-cz",
"lint": "eslint --fix --ext .jsx,.js src/",
"changelog": "changelog"
},
"keywords": [
"codetanzania",
"emis",
"web",
"disaster",
"hazard",
"incident",
"emergency",
"risk"
],
"dependencies": {
"@codetanzania/emis-api-client": "^0.16.3",
"@codetanzania/emis-api-states": "^0.12.1",
"antd": "^3.26.2",
"axios": "^0.19.0",
"inflection": "^1.12.0",
"lodash": "^4.17.15",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"randomcolor": "^0.6.0",
"rc-color-picker": "^1.2.6",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-starter-kit": "^1.0.1",
"redux-thunk": "^2.3.0"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@commitlint/travis-cli": "11.0.0",
"babel-plugin-import": "1.13.0",
"commitizen": "4.2.2",
"customize-cra": "1.0.0",
"cz-conventional-changelog": "3.3.0",
"eslint-config-airbnb": "18.0.1",
"eslint-config-prettier": "6.15.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-jest": "23.20.0",
"eslint-plugin-jsdoc": "23.0.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-prettier": "3.3.0",
"eslint-plugin-react": "7.17.0",
"generate-changelog": "1.8.0",
"husky": "4.3.6",
"lint-staged": "9.5.0",
"prettier": "2.2.1",
"react-app-rewired": "2.1.8",
"react-scripts": "3.3.0"
},
"contributors": [
{
"name": "Benson Maruchu",
"email": "[email protected]",
"url": "https://github.com/BenMaruchu"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/CodeTanzania/emis-web/issues"
},
"homepage": ".",
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"engines": {
"node": ">=8.11.1",
"npm": ">=5.6.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
],
".{css,scss}": [
"prettier --write",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"heroku-run-build-script": true
}