-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "kuso.domains",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start",
"lint:prettier": "prettier . --check",
"lint:eslint": "eslint . --format friendly",
"lint": "run-p lint:*",
"fix:prettier": "yarn lint:prettier --write",
"fix:eslint": "yarn lint:eslint --fix",
"fix": "run-s fix:eslint fix:prettier"
},
"dependencies": {
"next": "12.1.5",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@types/node": "16.18.116",
"@types/react": "17.0.83",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"autoprefixer": "10.4.20",
"eslint": "8.57.1",
"eslint-config-next": "12.3.4",
"eslint-config-prettier": "8.10.0",
"eslint-config-react": "1.1.7",
"eslint-formatter-friendly": "7.0.0",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"npm-run-all": "4.1.5",
"postcss": "8.4.47",
"prettier": "2.8.8",
"tailwindcss": "3.4.14",
"typescript": "4.9.5"
}
}