-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (57 loc) · 1.69 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
{
"name": "client",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"check-types": "tsc --noEmit",
"db:up": "docker-compose up -d",
"db:push": "your-orm-tool schema-push",
"db:seed": "node ./db-seed.js"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@formatjs/intl-localematcher": "^0.5.4",
"@mui/icons-material": "^5.15.14",
"@mui/material": "^5.15.14",
"@mui/styled-engine-sc": "^6.0.0-alpha.18",
"@stripe/stripe-js": "^3.4.0",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.6.8",
"bootstrap": "^4.1.3",
"cookies-next": "^4.2.1",
"csv-loader": "^3.0.5",
"csvtojson": "^2.0.10",
"dotenv": "^16.4.5",
"firebase": "^10.11.1",
"i18next": "^23.15.1",
"next": "14.2.3",
"next-i18next": "^15.3.1",
"papaparse": "^5.4.1",
"react": "^18",
"react-dom": "^18",
"react-i18next": "^15.0.2",
"react-icons": "^5.0.1",
"react-infinite-scroll-component": "^6.1.0",
"react-inner-image-zoom": "^3.0.2",
"react-lazy-load-image-component": "^1.6.0",
"react-loader-spinner": "^6.1.6",
"react-papaparse": "^4.4.0",
"react-range-slider-input": "^3.0.7",
"react-router-dom": "^6.22.3",
"react-scripts": "5.0.1",
"react-slick": "^0.30.2",
"react-swipeable-views": "^0.14.0",
"styled-components": "^6.1.8",
"swiper": "^11.1.0",
"web-vitals": "^2.1.4"
},
"devDependencies": {
}
}