-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·94 lines (94 loc) · 3.02 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
{
"name": "otentik",
"version": "0.7.0",
"license": "Apache-2.0",
"private": true,
"scripts": {
"start": "nx serve",
"build": "nx build",
"test": "nx test",
"tauri": "tauri"
},
"dependencies": {
"@headlessui/react": "^1.6.6",
"@heroicons/react": "^2.0.8",
"@supabase/supabase-js": "~1.35.6",
"@tanstack/react-query": "^4.2.3",
"@tauri-apps/api": "^1.0.2",
"clipboardy": "^3.0.0",
"core-js": "^3.6.5",
"inquirer": "^9.1.0",
"otpauth": "^8.0.2",
"react": "^18.2.0",
"react-detect-offline": "^2.4.5",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.3.0",
"regenerator-runtime": "0.13.7",
"smart-array-filter": "^4.0.0",
"tauri-plugin-store-api": "github:tauri-apps/tauri-plugin-store#67530781d86b73fae4ee03c17f43c76f09ae3400",
"tslib": "^2.4.0",
"zustand": "^4.1.1"
},
"devDependencies": {
"@fontsource/inter": "^4.5.12",
"@nrwl/cli": "14.5.10",
"@nrwl/eslint-plugin-nx": "14.5.10",
"@nrwl/jest": "14.5.10",
"@nrwl/linter": "14.5.10",
"@nrwl/nx-cloud": "latest",
"@nrwl/react": "^14.5.10",
"@nrwl/web": "14.5.10",
"@nrwl/workspace": "14.5.10",
"@nxext/react": "^14.0.4",
"@nxext/vite": "^14.0.3",
"@tailwindcss/aspect-ratio": "^0.4.0",
"@tailwindcss/forms": "^0.5.2",
"@tailwindcss/line-clamp": "^0.4.0",
"@tailwindcss/typography": "^0.5.4",
"@tauri-apps/cli": "^1.0.5",
"@testing-library/react": "13.3.0",
"@types/inquirer": "^9.0.1",
"@types/jest": "27.4.1",
"@types/node": "18.7.13",
"@types/react": "^18.0.17",
"@types/react-detect-offline": "^2.4.1",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"@vitejs/plugin-react": "^2.0.1",
"babel-jest": "27.5.1",
"clsx": "^1.2.1",
"csstype": "^3.1.0",
"eslint": "~8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"husky": "^8.0.1",
"jest": "27.5.1",
"lint-staged": "^13.0.3",
"nx": "14.5.10",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"react-test-renderer": "18.2.0",
"tailwind-scrollbar-hide": "^1.1.7",
"tailwindcss": "^3.1.8",
"ts-jest": "27.1.4",
"ts-node": "10.9.1",
"typescript": "~4.7.4",
"vite": "^3.0.9",
"vite-plugin-eslint": "1.8.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,json,css,scss,ts,tsx,html,graphql}": [
"pnpm run format --uncommitted"
]
}
}