-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.09 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.09 KB
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
{
"name": "leaf-ink",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"build:mobile": "CAPACITOR_BUILD=true next build",
"start": "next start",
"analyze": "ANALYZE=true next build --webpack",
"lint": "eslint",
"prepare": "husky",
"leaf": "node ./packages/cli/index.mjs",
"commit": "cz",
"test": "jest",
"test:cli": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.cli.config.js",
"test:e2e": "playwright test",
"generate": "plop",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:patch": "standard-version --release-as patch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@apollo/client": "^4.0.9",
"@capacitor/app": "^7.1.0",
"@capacitor/cli": "^7.4.4",
"@capacitor/core": "^7.4.4",
"@hookform/resolvers": "^5.2.2",
"@sentry/nextjs": "^10.26.0",
"@tanstack/react-query": "^5.90.10",
"@tanstack/react-query-devtools": "^5.90.2",
"@types/lodash": "^4.17.20",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"dayjs": "^1.11.19",
"firebase": "^12.6.0",
"framer-motion": "^12.23.24",
"graphql": "^16.12.0",
"i18next": "^25.6.3",
"immer": "^10.2.0",
"lodash": "^4.17.21",
"nanoid": "^5.1.6",
"next": "16.0.3",
"next-i18next": "^15.4.2",
"react": "19.2.0",
"react-dom": "19.2.0",
"react-hook-form": "^7.66.1",
"react-i18next": "^16.3.5",
"react-transition-group": "^4.4.5",
"sass": "^1.94.2",
"tailwind-merge": "^3.4.0",
"zod": "^4.1.12",
"zustand": "^5.0.8"
},
"devDependencies": {
"@capacitor/android": "^7.4.4",
"@capacitor/ios": "^7.4.4",
"@faker-js/faker": "^10.1.0",
"@next/bundle-analyzer": "^16.0.3",
"@playwright/test": "^1.56.1",
"@tailwindcss/postcss": "^4",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-i18next": "^8.1.0",
"boxen": "^8.0.1",
"chalk": "^5.6.2",
"commander": "^14.0.2",
"commitizen": "^4.3.1",
"cosmiconfig": "^9.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9",
"eslint-config-next": "16.0.3",
"eslint-config-prettier": "^10.1.8",
"figures": "^6.1.0",
"husky": "^9.1.7",
"inquirer": "^13.0.1",
"internal-ip": "^8.0.1",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"lint-staged": "^16.2.7",
"msw": "^2.12.2",
"ora": "^9.0.0",
"plop": "^4.0.4",
"prettier": "^3.6.2",
"qrcode-terminal": "^0.12.0",
"standard-version": "^9.5.0",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"msw": {
"workerDirectory": [
"public"
]
}
}