-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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
{
"name": "coronavirus",
"version": "2.0.0",
"description": "",
"private": true,
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "usage",
"corejs": {
"version": 3,
"proposals": true
}
}
]
]
},
"browserslist": [
"defaults"
],
"scripts": {
"production": "run-p jekyll-production webpack-production",
"development": "run-p jekyll-development webpack-dev",
"jekyll-production": "JEKYLL_ENV=production bundle exec jekyll serve --livereload",
"jekyll-development": "bundle exec jekyll serve --livereload",
"webpack-production": "npx webpack --watch --node-env production",
"webpack-dev": "npx webpack --watch --node-env development",
"browserslist": "npx browserslist@latest --update-db"
},
"author": "https://github.com/wdzajicek",
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"autoprefixer": "^10.2.6",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.4",
"postcss-loader": "^8.1.1",
"sass-embedded": "^1.80.4",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.93.0",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"colors": "1.4.0",
"core-js": "^3.6.5",
"regenerator-runtime": "^0.14.1"
}
}