generated from 202212-GIZ-YE-FEW/capstone-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
119 lines (119 loc) · 4.07 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "nextjs",
"version": "0.1.1",
"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",
"storybook": "concurrently 'yarn:watch:tailwind' 'yarn:watch:storybook'",
"watch:tailwind": "npx tailwindcss -i ./src/styles/globals.css -o ./src/styles/tailwind.css",
"watch:storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"dependencies": {
"@emailjs/browser": "^3.11.0",
"@emoji-mart/data": "^1.1.2",
"@emoji-mart/react": "^1.1.1",
"@firebase/firestore": "^3.12.0",
"@stripe/stripe-js": "^1.53.0",
"aos": "^2.3.4",
"axios": "^1.4.0",
"clsx": "^1.2.1",
"date-fns": "^2.30.0",
"emoji-mart": "^5.5.2",
"eslint-plugin-jest": "^27.2.1",
"firebase": "^9.22.0",
"formik": "^2.2.9",
"i18next": "^22.5.0",
"i18next-browser-languagedetector": "^7.0.1",
"moment": "^2.29.4",
"next": "^13.4.3",
"next-i18next": "^13.2.2",
"ngrok": "^4.3.3",
"nodemailer": "^6.9.2",
"nprogress": "^0.2.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-hook-form": "^7.43.9",
"react-i18next": "^12.3.1",
"react-icons": "^4.8.0",
"react-multi-carousel": "^2.8.3",
"react-query": "^3.39.3",
"react-redux-toastr": "^7.6.11",
"react-router-dom": "^6.11.2",
"react-test-renderer": "^18.2.0",
"react-toastify": "^9.1.3",
"sharp": "^0.32.1",
"tailwindcss-rtl": "^0.9.0",
"toastr": "^2.1.4",
"yup": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@storybook/addon-actions": "^7.0.12",
"@storybook/addon-essentials": "^7.0.12",
"@storybook/addon-interactions": "^7.0.12",
"@storybook/addon-links": "^7.0.12",
"@storybook/builder-webpack5": "^7.0.12",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^7.0.12",
"@storybook/testing-library": "^0.1.0",
"@svgr/webpack": "^8.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.6",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"concurrently": "^8.0.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.40.0",
"eslint-config-next": "^13.4.3",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.12",
"eslint-plugin-unused-imports": "^2.0.0",
"git-cz": "^4.9.0",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"next-router-mock": "^0.9.3",
"next-sitemap": "^4.1.3",
"postcss": "^8.4.23",
"postcss-loader": "^7.3.0",
"postcss-nesting": "^11.2.2",
"prettier": "^2.8.8",
"react-test-renderer": "^18.2.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.2"
},
"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"
}
}
}