-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"private": true,
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prettier": "npx prettier --check .",
"prettier-fix": "npx prettier --write .",
"db:reset": "npx sequelize-cli db:drop && npx sequelize-cli db:create && npx sequelize-cli db:migrate && npx sequelize-cli db:seed:all"
},
"dependencies": {
"@types/sequelize": "^4.28.14",
"axios": "^1.3.2",
"bootstrap": "^5.2.3",
"jsonwebtoken": "^9.0.0",
"mercadopago": "^1.5.14",
"mysql2": "^3.1.1",
"next": "latest",
"react": "^18.2.0",
"react-bootstrap": "^2.7.0",
"react-dom": "^18.2.0",
"sequelize": "^6.28.0",
"swr": "^2.0.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.0.3",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"dotenv": "^16.0.3",
"eslint": "^8.33.0",
"eslint-config-next": "13.1.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.8.4",
"typescript": "^4.7.4"
}
}