-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 860 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
{
"name": "app-router-template",
"version": "1.0.0",
"private": true,
"scripts": {
"build": "next build",
"start": "next dev",
"linter": "npx eslint . --ext .js,.jsx,.ts,.tsx",
"linter-fix": "npx eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"next": "^14.2.13",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.79.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18.3.10",
"@types/react-dom": "^18.3.0",
"typescript": "^5.6.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-next": "^14.0.3",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0"
}
}