-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
38
39
40
41
42
43
44
45
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --port 3000 --hostname 0.0.0.0",
"build": "next build",
"start": "next start --port 3000 --hostname 0.0.0.0",
"lint": "next lint",
"prepare": "husky install",
"format": "prettier --write .",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"check-all": "pnpm check-format && pnpm check-lint && pnpm check-types"
},
"dependencies": {
"axios": "^1.3.5",
"lodash": "^4.17.21",
"next": "^13.4.9",
"react": "^18.2.0",
"react-dom": "18.2.0",
"swr": "^2.1.3"
},
"devDependencies": {
"@types/node": "20.4.0",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"autoprefixer": "^10.4.15",
"eslint": "^8.50.0",
"eslint-config-next": "^13.4.9",
"eslint-config-prettier": "^9.0.0",
"eslint-config-standard-with-typescript": "^39.1.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.33.2",
"postcss": "^8.4.29",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"typescript": "^5.2.2",
"husky": "^8.0.0"
}
}