forked from xpadev-net/geekcamp2023-tokyo-caravan
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "geekcamp2023-tokyo-caravan",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"check-types": "npx tsc --noEmit --jsx react-jsx",
"eslint:fix": "next lint --fix",
"format": "prettier --write \"src/{app,pages,components}/**/*.{tsx,ts,js,json,css,scss}\"",
"lint:fix": "npm run format&&npm run eslint:fix&&npm run check-types"
},
"dependencies": {
"next": "14.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^20.11.16",
"@types/react": "^18.2.51",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^9.0.10",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"typescript": "^5.3.3"
}
}