-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.4 KB
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
{
"name": "budafooda",
"version": "2.0.5",
"description": "A little recipe storage project.",
"main": "index.js",
"engines": {
"node": ">=20.18.3"
},
"scripts": {
"start": "webpack-dev-server --mode=development",
"build": "webpack --mode=production"
},
"repository": {
"type": "git",
"url": "https://github.com/danbuda11/recipes.git"
},
"keywords": [],
"author": "Dan Buda",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/node": "^7.29.0",
"@babel/preset-env": "^7.29.3",
"@babel/preset-react": "^7.28.5",
"babel-loader": "^9.2.1",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.7",
"mini-css-extract-plugin": "^2.10.2",
"postcss": "^8.5.13",
"postcss-loader": "^8.2.1",
"postcss-preset-env": "^10.6.1",
"sass": "^1.99.0",
"sass-loader": "^16.0.7",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.106.2",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@eslint/js": "^9.14.0",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.3",
"stylelint-config-recommended": "^14.0.1",
"webpack-dev-server": "^5.2.3"
}
}