-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
35 lines (35 loc) · 914 Bytes
/
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
{
"name": "nextjs-with-mercado-pago-typescript",
"version": "0.1.0",
"private": true,
"scripts": {
"next": "next",
"dev": "yarn next dev",
"prebuild": "yarn rimraf ./api && yarn naf",
"build": "yarn next build",
"postbuild": "yarn next export",
"start": "yarn next start",
"lint": "yarn next lint",
"naf": "yarn node ./node_modules/.bin/nextjs-azure-function"
},
"dependencies": {
"@popperjs/core": "^2.9.2",
"bootstrap": "^5.0.2",
"jquery": "^3.6.0",
"mercadopago": "^1.5.8",
"next": "latest",
"react": "latest",
"react-dom": "latest"
},
"devDependencies": {
"@types/jquery": "^3.5.6",
"@types/mercadopago": "^1.5.4",
"@types/react": "latest",
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"nextjs-azure-function": "^1.0.13",
"rimraf": "^3.0.2",
"typescript": "latest",
"yarn": "^1.22.11"
}
}