-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.43 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
{
"name": "othello",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3000",
"build": "next build",
"lint": "npm run lint:js && npm run lint:prettier && npm run lint:style",
"lint:js": "eslint .",
"lint:prettier": "prettier --check \"./**/*.{ts,tsx,js}\" --ignore-path .gitignore",
"lint:style": "stylelint \"src/**/*.css\" --ignore-path .gitignore",
"fix:lint": "npm run lint:js -- --fix && npm run lint:style -- --fix && prettier --write \"./**/*.{ts,tsx,js}\" --ignore-path .gitignore",
"start": "next start",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"next": "15.5.19",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.6",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"eslint": "^9.20.1",
"eslint-config-flat-gitignore": "^2.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.15.0",
"jiti": "^2.4.2",
"prettier": "^3.5.0",
"prettier-plugin-organize-imports": "^4.1.0",
"stylelint": "^16.14.1",
"stylelint-config-recess-order": "^6.0.0",
"stylelint-config-standard": "^37.0.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"vitest": "^4.1.9"
}
}