This repository has been archived by the owner on Jul 9, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
64 lines (64 loc) · 1.62 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
{
"name": "ride",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@headlessui/react": "^1.4.2",
"@heroicons/react": "^1.0.5",
"@magic-ext/oauth": "~0.7.0",
"@tailwindcss/forms": "^0.3.4",
"firebase": "^8.2.1",
"geofirestore": "^4.4.2",
"localforage": "^1.10.0",
"lodash.debounce": "^4.0.8",
"lodash.kebabcase": "^4.1.1",
"magic-sdk": "^4.1.1",
"mobx": "6.3.5",
"mobx-react-lite": "3.2.1",
"mobx-state-tree": "5.0.3",
"next": "12.0.1",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-firebase-hooks": "^2.2.0",
"react-hook-form": "^6.14.2",
"react-hot-toast": "^1.0.2",
"react-markdown": "^5.0.3",
"react-social-login-buttons": "^3.4.0",
"reactotron-mst": "^3.1.4",
"reactotron-react-js": "^3.3.7",
"zustand": "^3.6.6"
},
"devDependencies": {
"@types/react": "^17.0.37",
"autoprefixer": "^10.4.0",
"eslint": "<8.0.0",
"eslint-config-next": "12.0.4",
"postcss": "^8.4.4",
"tailwindcss": "^2.2.19",
"typescript": "^4.5.2"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxBracketSameLine": false,
"jsxSingleQuote": true,
"printWidth": 100,
"proseWrap": "preserve",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}