generated from 202212-GIZ-YE-FEW/capstone-nextjs-template
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
123 lines (123 loc) · 3.68 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
120
121
122
123
{
"name": "codeforce-students-store",
"author": "CodeForce Team",
"description": "Student marketplace for affordable, second hand products.",
"version": "0.1.0",
"license": "MIT",
"homepage": "recoded_student-store_codeForce-cap",
"private": true,
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"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",
"prepare": "husky install",
"test:watch": "jest --watch",
"test": "jest --passWithNoTests",
"format": "prettier -w .",
"format:check": "prettier -c .",
"release": "standard-version",
"pull": "git pull origin ${1:-develop} && npm i",
"push-release": "git push --follow-tags origin main",
"postbuild": "next-sitemap --config next-sitemap.config.js",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"@ramonak/react-progress-bar": "^5.0.3",
"@zeit/next-css": "^1.0.1",
"bcrypt": "^5.1.0",
"bcryptjs": "^2.4.3",
"clsx": "^1.2.1",
"css-loader": "^6.7.3",
"date-fns": "^2.29.3",
"dompurify": "^3.0.1",
"eslint-plugin-jest": "^27.2.1",
"express-rate-limit": "^6.7.0",
"firebase": "^9.21.0",
"firebase-admin": "^11.7.0",
"i18next": "^22.4.14",
"keen-slider": "^6.8.5",
"leaflet": "^1.9.3",
"next": "^13.2.4",
"next-i18next": "^13.2.2",
"nextjs-progressbar": "^0.0.16",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-form-hooks": "^1.1.5",
"react-i18next": "^12.2.2",
"react-icons": "^4.8.0",
"react-leaflet": "^4.2.1",
"react-phone-input-2": "^2.15.1",
"react-range": "^1.8.14",
"react-router-dom": "^6.10.0",
"react-spinners": "^0.13.8",
"react-test-renderer": "^18.2.0",
"react-toastify": "^9.1.2",
"yup": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@commitlint/cli": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-interactions": "^7.0.2",
"@storybook/addon-links": "^7.0.2",
"@storybook/addon-styling": "^1.0.0-next.1",
"@storybook/blocks": "^7.0.2",
"@storybook/builder-vite": "^7.0.2",
"@storybook/nextjs": "^7.0.2",
"@storybook/react": "^7.0.2",
"@storybook/testing-library": "^0.0.14-next.2",
"@svgr/webpack": "^7.0.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.37.0",
"eslint-config-next": "^13.2.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.11",
"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",
"jest-extended": "^3.2.4",
"jest-fail-on-console": "^3.1.1",
"lint-staged": "^13.2.0",
"next-sitemap": "^4.0.6",
"postcss": "^8.4.21",
"postcss-loader": "^7.2.4",
"postcss-nesting": "^11.2.2",
"prettier": "^2.8.7",
"react-test-renderer": "^18.2.0",
"standard-version": "^9.5.0",
"storybook": "^7.0.2",
"tailwindcss": "^3.3.1"
},
"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"
}
}
}