-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "recipes",
"version": "1.0.0",
"description": "",
"scripts": {
"start": "webpack serve",
"build-dev": "webpack",
"build-prod": "webpack --node-env=production",
"deploy": "gh-pages -d dist",
"clear": "rd /s /q dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/juliabgkv/recipes-js.git"
},
"author": "juliabgkv",
"license": "ISC",
"bugs": {
"url": "https://github.com/juliabgkv/recipes-js/issues"
},
"homepage": "https://github.com/juliabgkv/recipes-js#readme",
"devDependencies": {
"@babel/core": "^7.24.0",
"@babel/preset-env": "^7.24.0",
"babel-loader": "^9.1.3",
"cname-webpack-plugin": "^3.0.0",
"css-loader": "^6.10.0",
"gh-pages": "^6.1.1",
"html-loader": "^5.0.0",
"html-webpack-partials-plugin": "^0.8.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.8.1",
"postcss": "^8.4.35",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.5.0",
"sass": "^1.71.1",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.2"
},
"dependencies": {
"@babel/polyfill": "^7.12.1"
}
}