-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.61 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.61 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "nextjs-typescript-api-client-sample",
"private": true,
"version": "0.0.0",
"license": "MIT",
"author": "Susumu Fujii",
"main": "index.js",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint:eslint": "eslint .",
"lint:prettier": "prettier --check .",
"lint": "run-p -l lint:eslint lint:prettier",
"format:eslint": "eslint --fix .",
"format:prettier": "prettier --write .",
"format": "run-s -l format:eslint format:prettier",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@types/react": "^18.3.24",
"@types/react-dom": "^18.3.7",
"@types/react-modal": "^3.16.3",
"@types/react-redux": "^7.1.34",
"@types/styled-components": "^5.1.34",
"axios": "^1.11.0",
"next": "^14.2.32",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-json-formatter": "^0.4.0",
"react-modal": "^3.16.3",
"react-redux": "^8.1.3",
"redux": "^4.2.1",
"redux-actions": "^2.6.5",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.4.2",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@reduxjs/toolkit": "^2.9.0",
"@types/node": "^24.3.1",
"@types/react-is": "^19",
"depcheck": "^1.4.7",
"eslint": "^8.57.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"react-is": "^19.1.1",
"sass": "^1.92.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.43.0"
},
"packageManager": "[email protected]"
}