forked from Deveimer/vovoca-frontend
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 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
44
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"pretty": "prettier --write \"./**/*.{js,jsx,ts,tsx,json}\"",
"lint": "eslint \"./**/*.{js,jsx,ts,tsx}\"",
"dev": "npm run lint && npm run pretty && next dev -p 3001",
"build": "next build",
"start": "next start",
"prepare": "husky install"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"axios": "^1.3.4",
"js-cookie": "^3.0.1",
"next": "13.2.4",
"nextjs-redirect": "^6.0.1",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-h5-audio-player": "^3.8.6",
"react-icons": "^4.8.0",
"react-js-pagination": "^3.0.3",
"react-modal": "^3.16.1",
"react-paginate": "^8.2.0",
"react-redux": "^8.0.5",
"react-responsive": "^9.0.2",
"react-responsive-modal": "^6.4.1",
"react-spinners-kit": "^1.9.1",
"react-toastify": "^9.1.3",
"redux": "^4.2.1",
"redux-devtools-extension": "^2.13.9",
"redux-thunk": "^2.4.2",
"swr": "^2.1.5"
},
"devDependencies": {
"eslint": "^8.41.0",
"eslint-config-next": "^13.4.4",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.0"
}
}