-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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": "next-starter",
"version": "0.1.0",
"author": "Emanuel Lorenzo <@emalorenzo_>",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"analyze": "ANALYZE=true next build",
"eslint": "next lint --fix --dir src",
"prettier": "prettier -l \"src/**/*.{js,jsx,md,ts,tsx}\"",
"lint": "yarn prettier && yarn eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix --cache-location ./node_modules/.cache/.eslintcache"
},
"dependencies": {
"@next/bundle-analyzer": "^13.1.5",
"@next/font": "^13.1.5",
"next": "^13.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^5.3.6",
"tailwindcss": "^3.2.4"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.0.10",
"@types/node": "^14.11.8",
"@types/react": "^16.9.52",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"autoprefixer": "^10.4.13",
"cssnano": "^5.1.12",
"eslint": "^7.11.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-simple-import-sort": "^7.0.0",
"husky": "^4.3.0",
"lint-staged": "^10.4.0",
"postcss": "^8.4.21",
"prettier": "^2.1.2",
"typescript": "^4.5.5"
}
}