-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
36 lines (36 loc) · 938 Bytes
/
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
{
"name": "google-docs-clone",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen-env-types": "npx gen-env-types .env.local -o src/types/env.d.ts -e ."
},
"dependencies": {
"@material-tailwind/react": "0.3.4",
"@next-auth/firebase-adapter": "^0.1.3",
"draft-js": "^0.11.7",
"firebase": "^8.10.0",
"moment": "^2.29.1",
"next": "12.0.4",
"next-auth": "^4.0.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-draft-wysiwyg": "^1.14.7",
"react-firebase-hooks": "^3.0.4"
},
"devDependencies": {
"@types/draft-js": "^0.11.7",
"@types/react": "^17.0.37",
"autoprefixer": "^10.4.0",
"eslint": "7.32.0",
"eslint-config-next": "12.0.4",
"gen-env-types": "^1.3.0",
"postcss": "^8.4.4",
"tailwindcss": "^2.2.19",
"typescript": "^4.5.2"
}
}