-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=18.17.0",
"npm": ">=9.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "jest",
"lint": "tsc --noEmit && eslint '*/**/*.{ts,tsx}' --quiet --fix",
"prettier-format": "prettier --config .prettierrc '*/**/*.{ts,tsx}' --write"
},
"dependencies": {
"@next/third-parties": "^15.5.9",
"@tailwindcss/postcss": "^4.1.18",
"dayjs": "^1.11.19",
"next": "15.5.9",
"next-intl": "^4.6.1",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"recharts": "^3.6.0",
"yahoo-finance2": "^3.10.2"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.19.3",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"eslint": "^9.39.2",
"eslint-config-next": "15.5.9",
"jest": "^29.7.0",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}