-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.21 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
{
"name": "bartender",
"private": true,
"version": "0.0.0",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist"
],
"scripts": {
"start": "BROWSER=none netlify dev",
"dev": "vite",
"build": "yarn typecheck && vite build",
"preview": "vite preview",
"test": "cross-env NODE_ENV=test jest",
"prettier": "prettier --check",
"lint": "eslint --max-warnings 0",
"typecheck": "tsc",
"prepare": "husky install"
},
"dependencies": {
"@auth0/auth0-react": "^1.10.1",
"@headlessui/react": "^1.6.1",
"@middy/core": "^3.1.0",
"@middy/do-not-wait-for-empty-event-loop": "^3.0.4",
"@middy/http-content-encoding": "^3.1.0",
"@middy/http-cors": "^3.0.4",
"@middy/http-error-handler": "^3.0.4",
"@middy/http-response-serializer": "^3.1.0",
"@netlify/functions": "^1.0.0",
"@tanstack/react-location": "^3.7.4",
"@tanstack/react-location-devtools": "^3.4.4",
"@types/http-errors": "^1.8.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "^14.18.20",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.9",
"@types/react-dom": "^18.0.3",
"@vanilla-extract/css-utils": "^0.1.2",
"@vanilla-extract/dynamic": "^2.0.2",
"clsx": "^1.1.1",
"cross-env": "^7.0.3",
"csstype": "^3.0.11",
"http-errors": "^2.0.0",
"http-status-codes": "^2.2.0",
"jsonwebtoken": "^8.5.1",
"jwks-rsa": "^2.1.3",
"memoize-one": "^6.0.0",
"modern-normalize": "^1.1.0",
"mongodb": "^4.7.0",
"node-vibrant": "~3.1.6",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-error-boundary": "^3.1.4",
"react-icons": "^4.3.1",
"react-merge-refs": "^1.1.0",
"react-query": "4.0.0-beta.2",
"regenerator-runtime": "^0.13.9",
"shallow-equal": "^1.2.1",
"type-fest": "^2.12.2"
},
"devDependencies": {
"@jest/types": "^28.1.0",
"@testing-library/react": "^13.3.0",
"@types/jest": "^27.5.1",
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vanilla-extract/css": "^1.7.0",
"@vanilla-extract/vite-plugin": "^3.1.5",
"@vitejs/plugin-react": "^1.3.2",
"cross-env": "^7.0.3",
"esbuild": "^0.14.39",
"esbuild-jest": "^0.5.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.5.0",
"eslint-plugin-unicorn": "^42.0.0",
"fetch-mock": "^9.11.0",
"husky": "^7.0.4",
"jest": "^28.1.0",
"jest-environment-jsdom": "^28.1.0",
"jest-extended": "^2.0.0",
"jest-mock-extended": "^2.0.6",
"jest-watch-typeahead": "^1.1.0",
"lint-staged": "^12.4.1",
"node-fetch": "2",
"prettier": "^2.6.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.3",
"vite": "^2.9.8"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "all"
},
"lint-staged": {
"*.?(c|m)@(j|t)s?(x)": [
"yarn prettier --write",
"yarn lint --fix"
],
"*.{json,md,css,scss,yml}": "yarn prettier --write"
}
}