-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.33 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
{
"name": "ramble",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .js --ignore-path .gitignore",
"db:migrate": "prisma migrate dev --preview-feature"
},
"dependencies": {
"@feedback-fish/react": "^1.2.1",
"@headlessui/react": "^0.2.0",
"@prisma/client": "^2.13.1",
"@sendgrid/mail": "^7.4.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/typography": "^0.3.1",
"autoprefixer": "^10.1.0",
"classnames": "^2.2.6",
"fathom-client": "^3.0.0",
"next": "10.0.4",
"next-auth": "^3.1.0",
"postcss": "^8.2.1",
"prettier-plugin-tailwind": "^2.2.8",
"react": "17.0.1",
"react-diff-viewer": "^3.1.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.13.1",
"rich-markdown-editor": "^11.0.11",
"styled-components": "^5.2.1",
"swr": "^0.3.11",
"tailwindcss": "^2.0.2"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/eslint-parser": "^7.12.1",
"@prisma/cli": "^2.13.1",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.0.0"
}
}