-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.37 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.37 KB
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
{
"name": "covid2019-kerala",
"version": "1.1.0",
"main": "server.js",
"homepage": "https://covid19kerala.info/",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/c19k/website-source.git"
},
"engines": {
"node": "15.x"
},
"browserslist": "> 0.5%, not IE 11, not dead",
"sideEffects": false,
"scripts": {
"build": "npx webpack --config webpack.dev.js",
"build-prod": "npx webpack --config webpack.prod.js",
"watch": "npx webpack --watch --config webpack.dev.js",
"start": "node server.js",
"start-webpack": "node server.webpack.js",
"deploy-firebase": "npx webpack --config webpack.prod.js && firebase deploy",
"postinstall": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"pre-commit": "lint-staged"
},
"dependencies": {
"@babel/core": "^7.13.8",
"@babel/runtime": "^7.13.8",
"@fnando/sparkline": "^0.3.10",
"c3": "^0.7.20",
"core-js": "^3.9.0",
"d3": "^6.5.0",
"dayjs": "^1.10.4",
"i18next": "^19.9.0",
"i18next-browser-languagedetector": "^6.0.1",
"loc-i18next": "^0.1.4",
"lodash": "^4.17.21",
"tippy.js": "^6.3.1",
"whatwg-fetch": "^3.6.1"
},
"devDependencies": {
"@babel/cli": "^7.13.0",
"@babel/plugin-transform-runtime": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"babel-loader": "^8.2.2",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^7.0.0",
"css-loader": "^5.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"express": "^4.17.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.2.0",
"husky": "^5.1.1",
"lint-staged": "^10.5.4",
"mini-css-extract-plugin": "^1.3.9",
"node-sass": "^5.0.0",
"pinst": "^2.1.6",
"postcss-loader": "^5.0.0",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"webpack": "^5.24.2",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^4.5.0",
"webpack-dev-middleware": "^4.1.0",
"webpack-merge": "^5.7.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,json}": "prettier --write"
}
}