-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.78 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
60
61
{
"name": "nextjs-boilerplate",
"version": "0.0.6",
"author": "Jonghwan Won <[email protected]> (https://github.com/jonghwanwon)",
"license": "MIT",
"description": "nextjs boilerplate",
"keywords": [
"next.js",
"typescript",
"boilerplate"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jonghwanwon/nextjs-boilerplate.git"
},
"bugs": {
"url": "https://github.com/jonghwanwon/nextjs-boilerplate/issues"
},
"homepage": "https://github.com/jonghwanwon/nextjs-boilerplate#readme",
"scripts": {
"dev": "cross-env node ./dev-server",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint-fix": "eslint '*/**/*.{js,ts,tsx}' --quiet --fix",
"prepare": "husky install"
},
"dependencies": {
"classnames": "^2.3.2",
"cross-env": "^7.0.3",
"dotenv": "^16.0.3",
"next": "^13.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/react": "^18.0.25",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"autoprefixer": "^10.4.13",
"eslint": "8.27.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "13.0.2",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.2",
"lint-staged": "^13.0.3",
"postcss": "^8.4.18",
"prettier": "^2.7.1",
"prettier-plugin-tailwindcss": "^0.1.13",
"tailwindcss": "^3.2.2",
"typescript": "^4.8.4"
}
}