-
Notifications
You must be signed in to change notification settings - Fork 101
/
package.json
62 lines (62 loc) · 1.74 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
53
54
55
56
57
58
59
60
61
62
{
"name": "todoapp",
"author": {
"name": "Maciej Twaróg",
"url": "https://github.com/maciekt07"
},
"private": true,
"type": "module",
"homepage": "https://react-cool-todo-app.netlify.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/maciekt07/TodoApp.git"
},
"license": "MIT",
"scripts": {
"dev": "vite",
"dev:host": "vite --host",
"test": "vitest",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prettier": "prettier --write \"**/*.{ts,tsx,md,json,html}\"",
"format": "npm run lint:fix && npm run prettier",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@emotion/css": "^11.13.0",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.16.7",
"emoji-picker-react": "^4.11.1",
"lz-string": "^1.5.0",
"ntc-ts": "^0.0.8",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-fast-marquee": "^1.6.5",
"react-hot-toast": "^2.4.1",
"react-qr-code": "^2.0.15",
"react-router-dom": "^6.26.0",
"react-spring-bottom-sheet": "^3.4.1"
},
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.0",
"vite-plugin-pwa": "^0.20.1",
"vite-plugin-qrcode": "^0.2.3",
"vitest": "^2.0.5"
}
}