-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "nextjs-tailwindcss",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build && next export",
"start": "next start",
"lint": "run-p --continue-on-error lint:*",
"lint:eslint": "eslint --ext .jsx,.js,.tsx,.ts .",
"lint:prettier": "prettier --check .",
"fix": "run-s fix:eslint fix:prettier",
"fix:eslint": "eslint --ext .jsx,.js,.tsx,.ts . --fix",
"fix:prettier": "prettier --write ."
},
"dependencies": {
"autoprefixer": "^10.3.3",
"classcat": "5.0.3",
"clipboard-copy": "4.0.1",
"cssnano": "5.0.8",
"next": "11.1.0",
"postcss-easy-import": "3.0.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-hot-toast": "^2.2.0",
"tailwindcss": "^2.2.8"
},
"license": "ISC",
"keywords": [],
"description": "Learn how to use Tailwind in a Next.js application,",
"devDependencies": {
"@types/react": "^17.0.20",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.14.0",
"eslint-config-next": "^12.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import-access": "^1.0.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tailwindcss": "^1.17.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.3.6",
"prettier": "^2.4.1",
"typescript": "^4.4.2"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true,
"jsxSingleQuote": true,
"semi": true
}
}