-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.62 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
55
56
57
58
59
60
{
"name": "agenda-de-contatos",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js --ignore public --ignore frontend",
"dev": "webpack -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.2",
"babel": "^6.23.0",
"bcryptjs": "^2.4.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^5.1.0",
"core-js": "^3.3.2",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"dotenv": "^16.4.5",
"ejs": "^3.1.10",
"express": "^4.19.2",
"express-session": "^1.18.0",
"helmet": "^7.1.0",
"mongoose": "^8.4.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.25.1",
"regenerator-runtime": "^0.13.3",
"validator": "^13.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.6.4",
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.7",
"@babel/preset-env": "^7.6.3",
"@babel/preset-react": "^7.24.7",
"autoprefixer": "^10.4.19",
"babel-loader": "^8.0.6",
"css-loader": "^7.1.2",
"cssnano": "^7.0.4",
"file-loader": "^6.2.0",
"nodemon": "^3.1.4",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"postcss-preset-env": "^9.6.0",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.4",
"url-loader": "^4.1.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
}
}