This repository has been archived by the owner on Feb 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
114 lines (114 loc) · 2.8 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
{
"name": "gisida",
"version": "1.4.0",
"description": "A dashboard builder library for map visualizations",
"keywords": [
"data visualization",
"mapping",
"maps",
"mapspec"
],
"license": "Apache-2.0",
"author": "Ona Systems Inc.",
"main": "build/gisida.js",
"repository": {
"type": "git",
"url": "https://github.com/onaio/gisida#gisida"
},
"scripts": {
"build": "webpack --progress --env.production=true",
"develop": "webpack --progress --watch --env.production=false",
"fix": "eslint src --ext=jsx --ext=js --fix",
"lint": "eslint src --ext=jsx --ext=js",
"test": "jest",
"test:coverage": "jest --coverage --coverageDirectory=coverage/jest"
},
"types": "./src/types/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,jsx}": [
"eslint --fix",
"git add"
],
"*.{json,css,md}": [
"prettier --write",
"git add"
]
},
"ignore": [
"build/gisida.js",
"build/gisida.js.map",
"test/*"
]
},
"jest": {
"verbose": true,
"testURL": "http://localhost/",
"coverageReporters": [
"text",
"html"
],
"collectCoverageFrom": [
"**/*.{js,jsx,ts,tsx}",
"!**/node_modules/**",
"!**/coverage/**",
"!**/serviceWorker.js",
"!**/index.js",
"!**/test/**",
"!**/build/**",
"!**/tests/**"
]
},
"dependencies": {
"@babel/runtime": "^7.4.3",
"@mapbox/geojsonhint": "^3.0.0",
"@onaio/superset-connector": "^0.0.13",
"babel-core": "v6.25.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-stage-0": "^6.24.1",
"colorbrewer": "^1.0.0",
"d3": "^4.13.0",
"highcharts": "^6.0.4",
"history": "^4.9.0",
"i": "^0.3.6",
"js-cookie": "^2.2.0",
"jsx-loader": "^0.13.2",
"lodash.clonedeep": "^4.5.0",
"lodash.omit": "^4.5.0",
"moment": "^2.22.1",
"mustache": "^2.3.0",
"neo-async": "^2.5.1",
"papaparse": "^4.3.6",
"redux": "^3.7.2",
"redux-thunk": "^2.2.0",
"simple-statistics": "^5.2.0",
"uglifyjs-webpack-plugin": "1.1.5",
"webpack": "^4.0.0"
},
"devDependencies": {
"babel-eslint": "^8.1.2",
"babel-jest": "^22.4.1",
"babel-preset-env": "^1.7.0",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^22.17.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.5.1",
"husky": "^1.3.1",
"jest": "^22.4.3",
"lint-staged": "^8.1.5",
"mapbox-gl": "^0.53.1",
"mock-browser": "^0.92.14",
"prettier": "^1.16.4",
"webpack-cli": "^3.3.6"
}
}