-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 2.08 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
{
"name": "kcc-core",
"version": "1.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.77.8",
"sass-loader": "^16.0.0",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"colors": "1.4.0",
"core-js": "^3.6.5",
"regenerator-runtime": "^0.14.1"
},
"comments": {
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "Set 'useBuiltIns': 'usage' for polyfilling es6 only by what is used and according to the browserlist settings.",
"debug": "Set 'debug': true, to see verbose '@babel/preset-env' output at terminal."
}
]
]
},
"browserslist": "Sets compatibility for JS polyfilling and CSS autoprefixing. IF YOU CHANGE BROWSERLIST SETTINGS, you must kill the build if its running (control + c), and restart the build to see changes!"
}
}