-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.21 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
{
"name": "empanadas",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "concurrently \"next dev\" \"json-server --watch app/data/db.json --port 3001\"",
"build": "next build",
"start": "concurrently \"next start\" \"json-server --watch app/data/db.json --port 3001\"",
"lint": "next lint"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.3",
"axios": "^0.27.2",
"classnames": "^2.3.1",
"concurrently": "^7.3.0",
"cors": "^2.8.5",
"i18nexus-cli": "^3.0.0",
"json-server": "^0.17.0",
"next": "^12.2.4",
"next-i18next": "^11.3.0",
"next-redux-wrapper": "^7.0.5",
"nextjs-progressbar": "^0.0.14",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-outside-click-handler": "^1.3.0",
"react-redux": "^8.0.2",
"react-tooltip": "^4.2.21",
"sass": "^1.54.0",
"sharp": "^0.30.7"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/node": "18.6.2",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/react-outside-click-handler": "^1.3.1",
"@types/react-tooltip": "^4.2.4",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"prettier": "^2.7.1",
"typescript": "4.7.4"
}
}