-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.1 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
{
"name": "nextjs-ts-boilerplate",
"description": "Quickly start your next React Server-side Rendering with NextJS Framework and TailwindCSS",
"version": "1.0.0",
"keywords": [
"react",
"tailwind",
"boilerplate",
"typescript",
"TSX",
"nextjs",
"minimal"
],
"main": "index.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .tsx --ext .ts src/",
"prettier": "prettier --write src/**/*.{ts,tsx,json}"
},
"license": "MIT",
"dependencies": {
"autoprefixer": "^9.8.6",
"classnames": "^2.2.6",
"date-fns": "^2.15.0",
"next": "^9.5.1",
"next-seo": "^4.7.3",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"tailwindcss": "^1.6.1"
},
"devDependencies": {
"@types/node": "^14.0.27",
"@types/react": "^16.9.44",
"babel-eslint": "^10.1.0",
"eslint": "^7.6.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.5",
"jest": "^26.2.2",
"prettier": "^2.0.5",
"typescript": "^3.9.7"
}
}