-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.26 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
{
"name": "books",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --ext .js,.ts,.tsx .",
"format": "prettier --ignore-path .prettierignore --write --loglevel silent '**/*.{ts,tsx,js,json}'",
"format:check": "prettier --check '**/*.{ts,tsx,js,json}'",
"types:check": "tsc",
"validate": "npm-run-all --parallel format:check lint types:check build"
},
"dependencies": {
"autoprefixer": "^10.3.1",
"isomorphic-unfetch": "^3.1.0",
"next": "11.0.1",
"postcss": "^8.3.6",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-error-boundary": "^3.1.3",
"swr": "^0.5.6",
"tailwindcss": "^2.2.7"
},
"devDependencies": {
"@types/node": "^16.4.10",
"@types/react": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"npm-run-all": "^4.1.5",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}