-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "rchern-covid19-map",
"description": "Covid-19 Map Visualization",
"version": "1.0.0",
"scripts": {
"start": "webpack-dev-server --env dev",
"build": "webpack --env prod",
"lint": "npm run lint:scripts && npm run lint:styles",
"lint:scripts": "eslint --fix . --ext .ts src",
"lint:styles": "stylelint \"./src/**/*.scss\" --fix"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"bootstrap": "4.4.1",
"jquery": "3.4.1"
},
"devDependencies": {
"@types/googlemaps": "3.39.3",
"@types/jquery": "3.3.34",
"@typescript-eslint/eslint-plugin": "2.26.0",
"@typescript-eslint/parser": "2.26.0",
"autoprefixer": "9.7.5",
"clean-webpack-plugin": "3.0.0",
"copy-webpack-plugin": "5.1.1",
"css-loader": "3.4.2",
"eslint": "6.8.0",
"eslint-config-prettier": "6.10.1",
"eslint-plugin-prettier": "3.1.2",
"file-loader": "6.0.0",
"gh-pages": "2.2.0",
"html-webpack-plugin": "4.0.3",
"husky": "4.2.3",
"mini-css-extract-plugin": "0.9.0",
"node-sass": "4.13.1",
"postcss-loader": "3.0.0",
"prettier": "2.0.2",
"prettier-stylelint": "0.4.2",
"sass-loader": "8.0.2",
"style-loader": "1.1.3",
"stylelint": "13.2.1",
"stylelint-config-standard": "20.0.0",
"stylelint-processor-html": "1.0.0",
"stylelint-scss": "3.16.0",
"ts-loader": "6.2.2",
"typescript": "3.4.3",
"webpack": "4.42.1",
"webpack-cli": "3.3.11",
"webpack-dev-server": "3.10.3",
"webpack-md5-hash": "0.0.6",
"webpack-merge": "^4.2.2"
},
"repository": "https://github.com/rchern/covid-19",
"author": "rchern"
}