-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 908 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 908 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
{
"name": "underground",
"version": "0.1.0",
"private": true,
"scripts": {
"start:prod": "next start",
"start:dev": "next dev",
"build": "next build",
"format": "prettier --write \"**/*.+(ts|tsx|js|jsx|json|css|scss|md)\"",
"lint:next": "next lint"
},
"dependencies": {
"@next/eslint-plugin-next": "^13.4.7",
"@types/node": "20.3.3",
"@types/react": "18.2.14",
"@types/react-dom": "18.2.6",
"eslint": "^8.44.0",
"eslint-config-next": "13.4.7",
"next": "13.4.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.45.1",
"styled-components": "^6.0.1",
"typescript": "5.1.6",
"yup": "^1.2.0"
},
"devDependencies": {
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.8.8"
}
}