-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.43 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
{
"name": "petly",
"version": "1.0.0",
"description": "a app that helps users find adoptable pets",
"main": "index.jsx",
"repository": {
"type": "git",
"url": "git+https://github.com/bxandrew/Petly.git"
},
"bugs": {
"url": "https://github.com/bxandrew/Petly/issues"
},
"homepage": "https://github.com/bxandrew/Petly#readme",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --mode=development --watch",
"dev": "webpack serve --open",
"build": "webpack --mode=production",
"server": "nodemon server/server.js"
},
"author": "Andrew Feng",
"license": "ISC",
"dependencies": {
"axios": "^1.3.4",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-session": "^1.17.3",
"formik": "^2.2.9",
"mongoose": "^6.10.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-router-dom": "^6.8.1",
"sass": "^1.58.3",
"swiper": "^9.1.0",
"yup": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"babel-loader": "^9.1.2",
"css-loader": "^6.7.3",
"sass-loader": "^13.2.0",
"style-loader": "^3.3.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.11.1"
}
}