-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.17 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
{
"private": true,
"devDependencies": {
"@babel/cli": "^7.21.5",
"@babel/core": "^7.21.8",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.21.5",
"autoprefixer": "^10.4.14",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.3.0",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"browser-sync": "^2.29.3",
"browser-sync-webpack-plugin": "^2.3.0",
"bulma": "^0.9.4",
"css-loader": "^6.7.4",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.23",
"postcss-cli": "^10.1.0",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.8.3",
"sass": "^1.62.1",
"sass-loader": "^10.4.1",
"url-loader": "^4.1.1",
"webpack": "^5.83.1",
"webpack-cli": "^4.10.0",
"webpack-spritesmith": "^1.1.0"
},
"scripts": {
"prod": "webpack --mode production",
"dev": "webpack --mode development --watch"
},
"babel": {
"comments": true,
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"ie >= 10",
"last 3 version"
]
}
}
]
]
}
}