-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
104 lines (104 loc) · 2.81 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
{
"name": "Firevault",
"description": "",
"version": "1.0.0",
"private": true,
"author": "ashwink0",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start -p $PORT",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write"
},
"main": "main/index.js",
"build": {
"asar": true,
"files": [
"main",
"out"
]
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"yarn lint --fix",
"yarn format"
]
},
"dependencies": {
"@google-cloud/storage": "5.8.5",
"@material-ui/core": "4.12.3",
"@material-ui/icons": "4.11.2",
"@material-ui/lab": "4.0.0-alpha.57",
"@react-firebase/auth": "0.2.10",
"@sentry/nextjs": "6.3.6",
"@tailwindcss/line-clamp": "0.2.1",
"@types/brotli": "1.3.0",
"@types/cors": "2.8.10",
"@types/http-status": "1.1.2",
"@types/mongodb": "3.6.8",
"@types/multer": "1.4.5",
"@types/styled-components": "5.1.11",
"brotli": "1.3.2",
"bson": "1.1.5",
"content-disposition": "0.5.2",
"cors": "2.8.5",
"file-type": "16.4.0",
"file-viewer": "1.2.0",
"firebase": "8.2.9",
"firebase-admin": "9.5.0",
"form-data": "4.0.0",
"idb": "3.0.2",
"iltorb": "2.4.5",
"lodash": "4.17.21",
"mongodb": "3.6.4",
"multer": "1.4.2",
"next": "10.2.3",
"next-connect": "0.10.0",
"next-pwa": "5.0.6",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-dropzone": "11.3.4",
"react-file-previewer": "0.6.3",
"react-file-viewer": "1.2.1",
"react-firebaseui": "4.1.0",
"rollbar": "2.21.1",
"styled-components": "5.3.0",
"tailwind": "4.0.0",
"tailwindcss": "2.2.7",
"uuid": "8.3.2",
"webpack": "5.47.1"
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@testing-library/dom": "8.1.0",
"@types/node": "14.14.37",
"@types/react": "17.0.3",
"@types/react-dom": "17.0.3",
"@types/uuid": "8.3.0",
"@typescript-eslint/eslint-plugin": "4.19.0",
"@typescript-eslint/parser": "4.19.0",
"autoprefixer": "10.2.5",
"commitizen": "4.2.4",
"concurrently": "^6.0.1",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.23.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.1.0",
"eslint-import-resolver-typescript": "2.4.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-react": "7.23.1",
"eslint-plugin-react-hooks": "4.2.0",
"husky": "5.2.0",
"lint-staged": "10.5.4",
"postcss": "8.2.13",
"prettier": "2.2.1",
"typescript": "4.2.3",
"uuid4": "2.0.2"
}
}