-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 3.43 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "habitrack",
"version": "0.1.0",
"author": "Dominik Hryshaiev <[email protected]>",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/domhhv/habitrack.git"
},
"description": "A simple calendar tracker for your habits",
"homepage": "https://www.habitrack.io",
"license": "MIT",
"keywords": [
"react",
"typescript",
"vite",
"zustand",
"eslint",
"prettier",
"react-aria",
"nextui",
"tailwind",
"date-fns",
"supabase",
"jest"
],
"scripts": {
"prepare": "husky install",
"prebuild": "yarn typecheck && yarn eslint:check && yarn prettier:check",
"dev": "vite --open",
"build": "vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"eslint:check": "eslint .",
"eslint:fix": "eslint --fix .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"test": "DEBUG_PRINT_LIMIT=30000 jest --config tests/jest.config.js",
"test:watch": "yarn test --watch",
"test:coverage": "yarn test --coverage",
"test:clear-cache": "jest --clearCache",
"db:reset": "supabase db reset",
"db:start": "supabase start",
"db:stop": "supabase stop",
"db:status": "supabase status",
"db:restart": "yarn db:stop && yarn db:start",
"db:diff": "supabase db diff",
"db:migration:up": "supabase migration up",
"db:migration:new": "supabase migration new",
"db:gen-types": "supabase gen types --lang=typescript --schema public --schema auth --schema storage --local > supabase/database.types.ts"
},
"lint-staged": {
"**/*.{ts,tsx}": [
"typecheck",
"eslint",
"prettier --check"
]
},
"dependencies": {
"@internationalized/date": "^3.5.5",
"@nextui-org/react": "^2.4.8",
"@phosphor-icons/react": "^2.1.7",
"@supabase/auth-helpers-react": "^0.4.2",
"@supabase/supabase-js": "^2.39.5",
"clsx": "^2.1.1",
"date-fns": "^3.0.6",
"framer-motion": "^11.3.31",
"react": "^18.2.0",
"react-aria": "^3.34.3",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-router-dom": "^6.22.0",
"react-stately": "^3.32.2",
"tailwind-merge": "^2.5.2",
"type-fest": "^4.26.1",
"zustand": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^20.10.6",
"@types/react": "^18.2.46",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"babel-jest": "^29.7.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.41",
"prettier": "^3.1.1",
"prettier-plugin-tailwindcss": "^0.6.6",
"rollup-plugin-visualizer": "^5.12.0",
"supabase": "^1.207.9",
"tailwindcss": "^3.4.10",
"ts-jest": "^29.1.2",
"typescript": "<5.6.0",
"vite": "^5.4.8"
}
}