-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 886 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
{
"name": "dump-next-2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint --dir src",
"lint:fix": "eslint --fix './src/**/*.{js,jsx,ts,tsx}'",
"format": "prettier --write --ignore-path .gitignore './src/**/*.{js,jsx,ts,tsx,json}'"
},
"dependencies": {
"@next/font": "13.1.2",
"eslint": "8.31.0",
"eslint-config-next": "13.1.2",
"firebase": "^9.15.0",
"next": "13.1.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "^7.43.2",
"recoil": "^0.7.6",
"type-fest": "^3.6.1"
},
"devDependencies": {
"@types/node": "^18.14.1",
"@types/react": "^18.0.28",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3",
"sass": "^1.57.1",
"ts-migrate": "^0.1.35",
"typescript": "^4.9.5"
}
}