-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
117 lines (117 loc) · 3.36 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
{
"name": "covid-19-map",
"version": "1.0.0",
"private": true,
"description": "Mapping states, counties, and municipalities that are enacting a moratorium on evictions due to the corona virus pandemic.",
"main": "src/main.js",
"scripts": {
"start": "webpack-dev-server --mode=development --env.NODE_ENV=development",
"start:prod": "serve dist",
"build": "webpack --mode=production --env.NODE_ENV=production",
"deploy": "npm run build && gh-pages -d dist -r 'https://github.com/antievictionmappingproject/covid-19-map.git'",
"lint:js": "eslint 'src/**/*.js' --ext .js",
"lint:js:fix": "npm run lint:js -- --fix",
"test": "jest"
},
"engines": {
"node": ">=10.13.0",
"npm": ">6.4.1"
},
"browserslist": {
"production": [
"> 0.25%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version",
"last 1 ie version"
]
},
"lint-staged": {
"src/**/*.{js,json}": [
"eslint --fix",
"git add"
],
"src/**/*.{js,vue,json,css,scss,md}": [
"prettier --write"
]
},
"jest": {
"setupFilesAfterEnv": [
"jest-expect-message"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/antievictionmappingproject/covid-19-map.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/antievictionmappingproject/covid-19-map/issues"
},
"homepage": "https://github.com/antievictionmappingproject/covid-19-map#readme",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.0",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^7.0.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-json": "^2.1.1",
"file-loader": "^6.0.0",
"gh-pages": "^2.2.0",
"html-webpack-plugin": "^4.0.4",
"husky": "^4.2.5",
"jest": "^26.3.0",
"jest-expect-message": "^1.0.2",
"lint-staged": "^10.1.5",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.4",
"sass-loader": "^8.0.2",
"serve": "^11.3.2",
"style-loader": "^1.1.3",
"stylelint": "^13.3.3",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.17.2",
"stylelint-webpack-plugin": "^2.0.0",
"terser-webpack-plugin": "^2.3.5",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
},
"dependencies": {
"core-js": "^3.6.4",
"d3-dispatch": "^1.0.6",
"details-polyfill": "^1.1.0",
"i18next": "^19.4.5",
"i18next-browser-languagedetector": "^4.2.0",
"leaflet": "^1.6.0",
"leaflet.markercluster": "^1.4.1",
"mustache": "^4.0.1",
"regenerator-runtime": "^0.13.5",
"whatwg-fetch": "^3.0.0"
}
}