-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "module-search-www",
"version": "1.0.0",
"private": true,
"author": "Hans Knöchel",
"scripts": {
"dev": "next dev",
"build": "next build",
"build:turbo": "npx turbo build",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix && yarn format",
"lint:turbo": "npx turbo lint",
"type-check": "tsc --noEmit",
"type-check:turbo": "npx turbo type-check",
"test:e2e": "playwright test",
"format": "prettier --write src",
"up": "yarn upgrade-interactive",
"up-latest": "yarn up --latest",
"release": "cross-env HUSKY=0 standard-version",
"push-release": "git push --follow-tags origin main",
"prepare": "husky install"
},
"dependencies": {
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.4.9",
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"framer-motion": "^8.5.2",
"next": "^13.1.1",
"next-pwa": "^5.6.0",
"next-seo": "^5.15.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.7.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.4.2",
"@commitlint/cz-commitlint": "^17.4.1",
"@playwright/test": "^1.29.2",
"@types/react": "^18.0.27",
"commitizen": "^4.3.0",
"commitlint": "^17.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.32.0",
"eslint-config-next": "^13.1.1",
"eslint-config-sznm": "^1.0.2",
"husky": "^8.0.3",
"lint-staged": "^13.1.0",
"next-sitemap": "^3.1.45",
"octokit": "^2.0.14",
"prettier": "^2.8.3",
"standard-version": "^9.5.0",
"turbo": "^1.7.0",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16.x.x"
}
}