-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1021 Bytes
/
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
{
"name": "happy-pet-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"npm run server\" \"next dev\"",
"deploy": "gh-pages -d build",
"server": "json-server -w server/db.json -p 3002",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@fancyapps/ui": "^5.0.16",
"@reduxjs/toolkit": "^1.9.5",
"@szhsin/react-accordion": "^1.2.0",
"@types/node": "18.15.13",
"@types/react": "18.0.38",
"@types/react-dom": "18.0.11",
"axios": "^1.4.0",
"concurrently": "^8.0.1",
"eslint": "8.39.0",
"eslint-config-next": "13.3.1",
"json-server": "^0.17.3",
"next": "13.3.1",
"next-i18next": "^13.3.0",
"nextjs-progressbar": "^0.0.16",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.5",
"react-select": "^5.7.2",
"redux-persist": "^6.0.0",
"swiper": "^9.2.4",
"typescript": "5.0.4"
},
"devDependencies": {
"sass": "^1.62.0"
}
}