-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.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
{
"name": "starfocus",
"version": "0.0.1",
"description": "Todo app for the future",
"author": "",
"license": "BUSL-1.1",
"bugs": {
"url": "https://github.com/astrochoric/starfocus/issues"
},
"homepage": "https://starfocus.app",
"keywords": [
"todo",
"space",
"productivity",
"goals",
"future"
],
"scripts": {
"android:dev": "next build && cap sync && mv out/home.html out/index.html && cap run android",
"build": "bun run convex:codegen && next build",
"check": "bun test && bun run type-check && bun run lint && bun run test",
"convex:codegen": "convex codegen --typecheck=disable",
"convex:dev": "convex dev --typecheck=disable",
"convex:deploy": "convex deploy --typecheck=disable",
"next:dev": "next dev -p 6603",
"lint": "next lint",
"prepare": "husky install",
"prettier:fix": "prettier --write components/ interfaces/ pages/ public/ styles/ utils/",
"start": "serve -p 6603 out",
"test": "cypress run",
"test:dev": "cypress open",
"type-check": "tsc"
},
"dependencies": {
"@capacitor/android": "^6.0.0",
"@capacitor/app": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/haptics": "^6.0.0",
"@capacitor/ios": "^6.0.0",
"@capacitor/keyboard": "^6.0.0",
"@capacitor/status-bar": "^6.0.0",
"@ionic/react": "^8.4.0",
"@ionic/react-router": "^8.4.0",
"@types/lodash": "^4.17.6",
"classnames": "2.5.1",
"clsx": "^2.1.1",
"convex": "^1.11.3",
"dayjs": "^1.11.13",
"debounce": "^1.2.1",
"dexie": "^4.0.9",
"dexie-cloud-addon": "^4.0.7",
"dexie-react-hooks": "^1.1.7",
"lodash": "^4.17.21",
"mudder": "^2.1.1",
"next": "^14.2.4",
"next-plausible": "^3.12.0",
"plausible-tracker": "^0.3.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "5.3.4",
"react-router-dom": "5.3.4",
"tailwind-merge": "^2.5.4"
},
"devDependencies": {
"@4tw/cypress-drag-drop": "^2.2.5",
"@capacitor/cli": "^6.0.0",
"@types/bun": "latest",
"@types/node": "20.11.25",
"@types/react": "18.2.64",
"@types/react-dom": "18.2.21",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"autoprefixer": "10.4.18",
"cypress": "^13.13.3",
"eslint": "8.57.0",
"eslint-config-next": "14.2.3",
"gitmoji-cli": "^7.1.0",
"husky": "^8.0.0",
"ionicons": "7.2.2",
"postcss": "8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.1.13",
"serve": "^14.2.3",
"tailwindcss": "3.4.1",
"typescript": "5.4.5"
},
"engines": {
"node": "20.x"
}
}