-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 845 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 845 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
{
"name": "lost-void-tracker",
"version": "0.1.1",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@reduxjs/toolkit": "^2.9.0",
"next": "^15.5.5",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-redux": "^9.2.0",
"redux-persist": "^6.0.0",
"yup": "^1.7.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.14",
"@types/node": "^24.7.2",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/redux-persist": "^4.3.1",
"@typescript-eslint/parser": "^8.46.1",
"eslint": "^9.37.0",
"postcss": "^8",
"eslint-config-next": "^15.5.5",
"tailwindcss": "^4.1.14",
"typescript": "^5"
}
}