-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.19 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
{
"name": "next-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:eslint": "eslint --cache .",
"lint:prettier": "prettier --check .",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "yarn lint:prettier --write"
},
"dependencies": {
"@heroicons/react": "^1.0.5",
"chrome-aws-lambda": "^10.1.0",
"classnames": "^2.3.1",
"date-fns": "^2.28.0",
"detect-inapp": "^1.4.0",
"formik": "^2.2.9",
"framer-motion": "^6.2.6",
"next": "^12.0.10",
"puppeteer-core": "^13.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"tailwind-scrollbar": "^1.3.1"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.0",
"@types/node": "^17.0.14",
"@types/react": "17.0.19",
"autoprefixer": "^10.4.0",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-tailwindcss": "^3.4.3",
"postcss": "^8.4.1",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"sass": "^1.49.7",
"tailwindcss": "^3.0.13",
"typescript": "4.4.2"
}
}