-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.66 KB
/
package.json
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
{
"name": "weather-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev-pre": "[ -f babel.config.js ] && mv babel.config.js temp-babel.config.js || true",
"dev-post": "mv temp-babel.config.js babel.config.js",
"dev": "yarn dev-pre && NODE_ENV=development next dev && yarn dev-post",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "[ -f temp-babel.config.js ] && mv temp-babel.config.js babel.config.js && jest || jest",
"jest": "[ -f temp-babel.config.js ] && mv temp-babel.config.js babel.config.js && jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@babel/preset-env": "^7.23.2",
"@babel/preset-react": "^7.22.15",
"@babel/preset-typescript": "^7.23.2",
"@types/jest": "^29.5.5",
"@types/react-resizable": "^3.0.5",
"babel-jest": "^29.7.0",
"dayjs": "^1.11.10",
"next": "13.5.4",
"next-themes": "^0.2.1",
"react": "^18",
"react-charts": "^3.0.0-beta.56",
"react-dom": "^18",
"react-icons": "^4.11.0",
"react-resizable": "^3.0.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "13.5.4",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-testing-library": "^6.1.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8",
"tailwindcss": "^3",
"ts-jest": "^29.1.1",
"typescript": "^5"
}
}