-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.26 KB
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
{
"name": "nextjs-typescript-starter",
"version": "1.0.0",
"description": "Configuration for NextJS with Typescript and TailwindCSS",
"main": "index.js",
"author": "Tri Hoang",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
},
"dependencies": {
"next": "^9.4.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^1.4.6"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/node": "^14.0.5",
"@types/react": "^16.9.35",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"@typescript-eslint/parser": "^3.0.1",
"autoprefixer": "^9.8.0",
"eslint": "^7.1.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"lint-staged": "^10.2.6",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.0.5",
"typescript": "^3.9.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "tsc --noEmit && lint-staged"
}
},
"lint-staged": {
"*.css": "prettier --write",
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}