forked from ixartz/Next-JS-Landing-Page-Starter-Template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.47 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
56
57
58
59
{
"name": "next-js-boilerplate",
"version": "1.0.0",
"scripts": {
"dev": "next --port 8080",
"build": "next build",
"start": "next start",
"build-stats": "ANALYZE=true npm run build",
"export": "next export -o dist",
"build-prod": "run-s clean build export",
"clean": "rimraf .next dist",
"lint": "eslint --ext .js,.jsx,.ts,.tsx ."
},
"dependencies": {
"@tailwindcss/jit": "^0.1.17",
"next": "^10.1.2",
"next-seo": "^4.23.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"styled-jsx-plugin-postcss": "^4.0.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^10.1.2",
"@types/node": "^14.14.37",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.20.0",
"autoprefixer": "^10.2.5",
"eslint": "^7.23.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.2.8",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"tailwindcss": "^2.0.4",
"typescript": "^4.2.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix",
"eslint"
],
"*.json": [
"prettier --write"
]
},
"license": "ISC"
}