-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.33 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
{
"name": "portfolio",
"version": "1.0.0",
"private": true,
"description": "This is Takashi's portfolio.",
"author": "Hideaki Takahashi <[email protected]> (https://github.com/takashi0602)",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"check:eslint": "eslint --max-warnings 0 . --ignore-path .gitignore --cache --cache-strategy content --cache-file=node_modules/.cache/eslint/.eslintcache",
"check:prettier": "prettier --check . --ignore-path .gitignore --cache --cache-strategy content",
"fix:eslint": "eslint --fix --max-warnings 0 . --ignore-path .gitignore --cache --cache-strategy content --cache-file=node_modules/.cache/eslint/.eslintcache",
"fix:prettier": "prettier --write . --ignore-path .gitignore --cache --cache-strategy content",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"dependencies": {
"next": "14.0.1",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"eslint": "^8",
"eslint-config-next": "14.0.1",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"typescript": "^5"
}
}