-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.18 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.18 KB
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
{
"name": "starter-nextui",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && yarn format",
"type-check": "tsc --noEmit",
"format": "prettier --write src",
"up": "yarn upgrade-interactive",
"up-latest": "yarn up --latest",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@nextui-org/react": "^1.0.0-beta.7",
"next": "12.1.6",
"next-pwa": "^5.5.4",
"next-seo": "^5.4.0",
"next-themes": "^0.2.0",
"react": "18.1.0",
"react-dom": "18.1.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.3",
"@types/node": "17.0.40",
"@types/react": "18.0.11",
"commitlint": "^17.0.3",
"eslint": "8.17.0",
"eslint-config-next": "12.1.6",
"eslint-config-sznm": "^1.0.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"next-sitemap": "^3.1.6",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"typescript": "4.7.3"
}
}