-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 936 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 936 Bytes
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
{
"name": "youtube",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "pnpm serve -s -l 3000 build",
"lint": "next lint",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"dependencies": {
"@popperjs/core": "^2.11.5",
"@reduxjs/toolkit": "^1.8.1",
"@types/bootstrap": "^5.1.10",
"axios": "^0.27.2",
"bootstrap": "^5.1.3",
"formik": "^2.2.9",
"next": "12.1.5",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-hook-form": "^7.30.0",
"react-redux": "^8.0.1",
"redux": "^4.2.0"
},
"devDependencies": {
"@types/node": "17.0.27",
"@types/node-sass": "^4.11.2",
"@types/react": "18.0.6",
"@types/react-dom": "18.0.2",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"node-sass": "^7.0.1",
"prettier": "^2.6.2",
"typescript": "4.6.3"
}
}