-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "pomodoro",
"version": "0.0.0",
"scripts": {
"dev": "vite --host --port 3000",
"build": "vite build",
"preview": "vite preview --host --port 3000",
"lint": "eslint ./src --fix --ext .ts --ext .tsx",
"prepare": "husky",
"check-types": "tsc"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@reduxjs/toolkit": "^2.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-redux": "^9.1.2"
},
"devDependencies": {
"@swc/core": "^1.9.2",
"@types/node": "^22.9.0",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.0.1",
"@vitejs/plugin-react-swc": "^3.7.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.6",
"prettier": "3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.2"
},
"type": "module"
}