forked from c19k/website-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.18 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
{
"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": "10.x"
},
"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"
},
"dependencies": {
"@babel/core": "^7.10.2",
"@babel/runtime": "^7.11.2",
"@fnando/sparkline": "^0.3.10",
"@types/date-fns": "^2.6.0",
"apexcharts": "^3.19.2",
"c3": "^0.7.18",
"chart.js": "^2.9.3",
"core-js": "^3.6.5",
"d3": "^5.16.0",
"date-fns": "^2.14.0",
"express": "^4.17.1",
"i18next": "^19.6.0",
"i18next-browser-languagedetector": "^5.0.0",
"loc-i18next": "^0.1.4",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"tippy.js": "^6.2.3",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.1.0",
"babel-plugin-lodash": "^3.3.4",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.0.2",
"css-loader": "^3.6.0",
"eslint": "^7.4.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.14.1",
"postcss-loader": "^3.0.0",
"prettier": "^2.0.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.0.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-middleware": "^3.7.2",
"webpack-merge": "^4.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md,json}": "prettier --write"
}
}