generated from 202306-NEA-DZ-FEW/capstone-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 4.14 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
124
125
126
127
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"main": "index.js",
"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": {
"@babel/plugin-transform-modules-commonjs": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@fullcalendar/core": "^6.1.9",
"@fullcalendar/daygrid": "^6.1.9",
"@fullcalendar/react": "^6.1.9",
"@fullcalendar/timegrid": "^6.1.9",
"@jitsi/react-sdk": "^1.4.0",
"@stripe/react-stripe-js": "^2.3.1",
"@stripe/stripe-js": "^2.1.11",
"agora-rtc-sdk-ng": "^4.19.3",
"axios": "^1.6.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-jest": "^29.6.3",
"clsx": "^1.2.1",
"cookie": "^0.6.0",
"d3": "^7.8.5",
"date-fns": "^2.29.1",
"embla-carousel-react": "^8.0.0-rc14",
"eslint-plugin-jest": "^26.6.0",
"firebase": "^10.6.0",
"framer-motion": "^10.16.5",
"fs": "^0.0.1-security",
"i18next": "^21.10.0",
"i18next-browser-languagedetector": "^7.1.0",
"isomorphic-unfetch": "^4.0.2",
"js-cookie": "^3.0.5",
"jsonwebtoken": "^9.0.2",
"next": "^13.4.19",
"next-auth": "^4.24.5",
"next-cookies": "^2.0.3",
"next-i18next": "^11.2.2",
"next-themes": "^0.2.1",
"next-transpile-modules": "^10.0.1",
"nookies": "^2.5.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebase-hooks": "^5.1.1",
"react-icons": "^4.11.0",
"react-intersection-observer": "^9.5.3",
"react-modal": "^3.16.1",
"react-quill": "^2.0.0",
"react-router-dom": "^6.3.0",
"react-select": "^5.7.7",
"react-select-country-list": "^2.2.3",
"react-slick": "^0.29.0",
"react-slideshow-image": "^4.3.0",
"react-spring": "^9.7.3",
"react-spring-carousel": "^2.0.19",
"react-test-renderer": "^18.2.0",
"react-toastify": "^9.1.3",
"slick-carousel": "^1.8.1",
"stripe": "^14.3.0"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3",
"@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",
"autoprefixer": "^10.4.16",
"babel-jest": "^29.7.0",
"cz-conventional-changelog": "^3.3.0",
"daisyui": "^3.9.2",
"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",
"match-media-mock": "^0.1.1",
"next-sitemap": "^2.5.28",
"postcss": "^8.4.31",
"postcss-loader": "^7.0.1",
"postcss-nesting": "^10.1.10",
"prettier": "^2.8.8",
"react-test-renderer": "^18.2.0",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.3"
},
"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"
}
},
"jest": {
"setupFiles": [
"test-setup.js"
]
}
}