generated from 202212-GIZ-YE-FEW/capstone-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
87 lines (87 loc) · 2.62 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "eslint src --fix && npm run format",
"lint:strict": "eslint src",
"test:watch": "jest --watch",
"test": "jest --passWithNoTests",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"prepare": "husky install"
},
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@next/font": "^13.2.4",
"aos": "^2.3.4",
"clsx": "^1.2.1",
"date-fns": "^2.29.1",
"eslint-plugin-jest": "^26.6.0",
"firebase": "^9.19.1",
"formik": "^2.2.9",
"i18next": "^21.9.0",
"next": "^13.2.4",
"next-i18next": "^11.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.3.0",
"react-shimmer-effects-18": "^1.0.4",
"react-test-renderer": "^18.2.0",
"sweetalert": "^2.1.2",
"swiper": "^8.3.0",
"yup": "^1.1.1"
},
"devDependencies": {
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4",
"@svgr/webpack": "^6.2.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/react": "^18.0.15",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.19.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^2.0.0",
"git-cz": "^4.9.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.5.0",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.14",
"postcss-loader": "^7.0.1",
"postcss-nesting": "^10.1.10",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"standard-version": "^9.5.0"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint",
"prettier -w"
],
"src/**/*.{json,css,scss,md}": [
"prettier -w"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"browser": {
"fs": false,
"os": false,
"path": false
}
}