-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.7 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"server": "nodemon ./src/back-end/server.js",
"debug": "NODE_DEBUG=Error,DEBUG=express:* node --inspect ./src/back-end/server.js",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@hookform/resolvers": "^3.3.4",
"@jest/types": "^29.6.3",
"@types/node": "^20.11.16",
"@types/react": "^18.2.52",
"bcrypt": "^5.1.1",
"bootstrap": "^5.3.2",
"bootstrap-icons": "^1.11.3",
"cookie-parser": "^1.4.6",
"crypto-js": "^4.2.0",
"dotenv": "^16.4.1",
"eslint-config-next": "^13.5.6",
"express": "^4.18.2",
"express-async-handler": "^1.2.0",
"express-rate-limit": "^7.1.5",
"express-validator": "^7.0.1",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"module-alias": "^2.2.3",
"mongoose": "^6.12.6",
"next": "^13.5.6",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-linkedin-oauth2": "^2.0.0",
"passport-local": "^1.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.50.0",
"react-toastify": "^9.1.3",
"swr": "^2.2.4",
"typescript": "^5.3.3",
"yup": "^1.3.3"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/jest-dom": "^6.4.1",
"@testing-library/react": "^14.2.1",
"@types/chai": "^4.3.11",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"chai": "^4.4.1",
"colors": "^1.4.0",
"eslint": "^8.56.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^3.3.2",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"whatwg-fetch": "^3.6.20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fdvmoreira/vendospace.com.git"
},
"keywords": [],
"author": "Flavio Moreira",
"license": "ISC",
"bugs": {
"url": "https://github.com/fdvmoreira/vendospace.com/issues"
},
"homepage": "https://github.com/fdvmoreira/vendospace.com#readme"
}