-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 903 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 903 Bytes
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
{
"name": "checkpoint-website",
"version": "0.1.0",
"private": true,
"packageManager": "yarn@4.13.0",
"workspaces": [
"docusaurus"
],
"scripts": {
"dev": "concurrently -n next,docs -c blue,magenta \"next dev -p 6425\" \"yarn workspace checkpoint-docs start\"",
"build": "next build",
"start": "next start -p 6425",
"lint": "next lint"
},
"resolutions": {
"webpack": "5.97.1"
},
"dependencies": {
"next": "^16.2.1",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.5",
"@tailwindcss/postcss": "^4.1.3",
"@types/node": "^22.15.0",
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"concurrently": "^9.1.2",
"eslint": "^9.25.0",
"eslint-config-next": "^16.2.1",
"tailwindcss": "^4.1.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.57.2"
}
}