-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.75 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
{
"name": "tyranno",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest --watch --passWithNoTests",
"test:ci": "jest --passWithNoTests",
"new:ui": "hygen generator ui",
"new:model": "hygen generator model",
"new:page": "hygen generator page",
"prepare": "husky install",
"commitmsg": "commitlint -e $GIT_PARAMS",
"markuplint:check": "markuplint -p \"./src/**/*.tsx\"",
"cspell:check": "cspell -c ./cspell.config.json \"./src/**/*\" --unique --no-progress --no-summary",
"lint:precommit": "eslint 'src/**/*.{ts,tsx}' --max-warnings 0",
"fmt:precommit": "prettier --write 'src/**/*.{js,jsx,ts,tsx,json,css,scss}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"buf": "npx @bufbuild/buf generate --path schemas/protos"
},
"engines": {
"npm": "bun please",
"yarn": "bun please",
"pnpm": "bun please"
},
"lint-staged": {
"src/**/*.{ts,tsx}": "bun run lint:precommit",
"src/**/*.{js,jsx,ts,tsx,json,css,scss}": "bun run fmt:precommit"
},
"dependencies": {
"@bufbuild/connect-query": "^0.4.1",
"@bufbuild/connect-web": "^0.13.0",
"@bufbuild/protobuf": "^1.3.1",
"@connectrpc/connect-query": "^0.4.4",
"@fortawesome/fontawesome-svg-core": "^6.4.2",
"@fortawesome/free-regular-svg-icons": "^6.4.2",
"@fortawesome/free-solid-svg-icons": "^6.4.2",
"@fortawesome/react-fontawesome": "latest",
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"@tanstack/react-query": "^4.35.3",
"@tanstack/react-query-devtools": "^4.35.3",
"@types/node": "20.4.9",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"autoprefixer": "10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"eslint": "8.46.0",
"eslint-config-next": "13.4.13",
"firebase": "^10.4.0",
"google-protobuf": "^3.21.2",
"grpc-web": "^1.4.2",
"next": "13.4.13",
"postcss": "8.4.27",
"qrcode.react": "^3.1.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.3.3",
"typescript": "5.1.6",
"zustand": "^4.4.1"
},
"devDependencies": {
"@bufbuild/protoc-gen-connect-query": "^0.4.1",
"@bufbuild/protoc-gen-connect-web": "^0.11.0",
"@bufbuild/protoc-gen-es": "^1.3.1",
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@markuplint/jsx-parser": "^3.9.1",
"@markuplint/react-spec": "^3.10.1",
"@storybook/addon-essentials": "^7.2.2",
"@storybook/addon-interactions": "^7.2.2",
"@storybook/addon-links": "^7.2.2",
"@storybook/addon-onboarding": "^1.0.8",
"@storybook/blocks": "^7.2.2",
"@storybook/nextjs": "^7.2.2",
"@storybook/react": "^7.2.2",
"@storybook/testing-library": "^0.2.0",
"@testing-library/jest-dom": "^6.1.3",
"@testing-library/react": "^14.0.0",
"@tsconfig/strictest": "^2.0.1",
"@types/jest": "^29.5.4",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"cspell": "^7.3.2",
"encoding": "^0.1.13",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.3",
"hygen": "^6.2.11",
"jest": "^29.6.4",
"jest-environment-jsdom": "^29.6.4",
"lint-staged": "^13.2.3",
"markuplint": "^3.12.1",
"prettier": "^3.0.1",
"storybook": "^7.2.2",
"ts-jest": "^29.1.1"
},
"volta": {
"node": "20.6.1",
"npm": "10.1.0",
"pnpm": "8.7.4",
"yarn": "3.6.3"
}
}