-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.6 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
{
"name": "next-batatabit",
"description": "PoC build with NextJS",
"author": {
"name": "Hugo Méndez",
"url": "https://hugomendez.dev"
},
"version": "0.1.8",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/Hugomndez/next-batatabit"
},
"bugs": {
"url": "https://github.com/Hugomndez/next-batatabit/issues"
},
"homepage": "https://next-batatabit.vercel.app",
"browserslist": [
">0.25%",
"not ie 11",
"not op_mini all"
],
"engines": {
"node": "16"
},
"packageManager": "yarn@1.22.17",
"scripts": {
"dev:debug": "cross-env NODE_OPTIONS='--inspect' next dev",
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.mjs",
"start": "next start",
"lint": "next lint",
"prettier": "prettier --write .",
"analyze": "ANALYZE=true yarn build",
"prepare": "husky install"
},
"dependencies": {
"@next/bundle-analyzer": "13.3.4",
"@next/env": "13.4.1",
"cookie": "0.5.0",
"next": "13.4.1",
"next-auth": "4.22.1",
"next-i18next": "12.1.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@commitlint/cli": "17.6.3",
"@commitlint/config-conventional": "17.1.0",
"@types/cookie": "0.5.1",
"@types/node": "18.11.18",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"cross-env": "7.0.3",
"eslint": "8.24.0",
"eslint-config-next": "12.3.1",
"husky": "8.0.1",
"next-sitemap": "4.0.9",
"path": "0.12.7",
"prettier": "2.7.1",
"typescript": "4.8.4"
}
}