forked from CodeTanzania/emis-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 2.86 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.2",
"@codetanzania/emis-api-states": "^0.11.2",
"antd": "^3.19.4",
"axios": "^0.19.0",
"customize-cra": "^0.2.13",
"inflection": "^1.12.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"prop-types": "^15.7.2",
"randomcolor": "^0.5.4",
"rc-color-picker": "^1.2.6",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"redux": "^4.0.1",
"redux-starter-kit": "^0.5.1",
"redux-thunk": "^2.3.0"
},
"eslintConfig": {
"extends": "react-app"
},
"devDependencies": {
"@commitlint/cli": "8.0.0",
"@commitlint/config-conventional": "8.0.0",
"@commitlint/travis-cli": "8.0.0",
"babel-plugin-import": "1.12.0",
"commitizen": "3.1.1",
"cz-conventional-changelog": "2.1.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-prettier": "5.0.0",
"eslint-plugin-import": "2.17.3",
"eslint-plugin-jest": "22.6.4",
"eslint-plugin-jsdoc": "8.1.0",
"eslint-plugin-jsx-a11y": "6.2.1",
"eslint-plugin-prettier": "3.1.0",
"eslint-plugin-react": "7.13.0",
"generate-changelog": "1.7.1",
"husky": "2.4.1",
"lint-staged": "8.2.1",
"prettier": "1.18.2",
"react-app-rewired": "2.1.3"
},
"contributors": [
{
"name": "Benson Maruchu",
"email": "benmaruchu@gmail.com",
"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
}