-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.79 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.79 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
54
55
56
57
58
59
{
"name": "shellscapegardenplanner",
"version": "1.0.0",
"description": "Plan the perfect garden whatever the size and location.",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack",
"build-dev": "webpack --watch",
"start": "nodemon server/server.js",
"dev": "concurrently \"cross-env NODE_ENV=development webpack-dev-server --hot --color\" \"nodemon ./server/server.js\""
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/PF-Armadillos/ShellScape-Garden-Planner.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/PF-Armadillos/ShellScape-Garden-Planner/issues"
},
"homepage": "https://github.com/PF-Armadillos/ShellScape-Garden-Planner#readme",
"dependencies": {
"@reduxjs/toolkit": "^2.2.3",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongoose": "^8.3.2",
"pg": "^8.11.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.1",
"react-router-dom": "^6.23.0"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@eslint/js": "^9.1.1",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.1",
"globals": "^15.0.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"nodemon": "^3.1.0",
"postcss": "^8.4.38",
"postcss-import": "^16.1.0",
"postcss-loader": "^8.1.1",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.3",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}