This repository was archived by the owner on Oct 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.64 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.64 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
51
52
53
54
55
56
57
58
59
{
"name": "nextjs-ts-tailwind-template",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:eslint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --write 'src/**/*.{js,jsx,ts,tsx,scss}'",
"prepare": "husky install",
"check-types": "tsc",
"validate": "npm run prettier & npm run lint:eslint & npm run check-types & npm run build"
},
"dependencies": {
"@chakra-ui/react": "^2.2.6",
"@emotion/react": "^11.10.0",
"@emotion/styled": "^11.10.0",
"@thirdweb-dev/react": "^2.6.3",
"@thirdweb-dev/sdk": "^2.3.36",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"ethers": "^5.6.9",
"framer-motion": "^7.0.0",
"next": "^12.1.6",
"pg": "^8.8.0",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "^7.34.2",
"react-hot-toast": "^2.3.0",
"sass": "^1.52.1"
},
"devDependencies": {
"@tsconfig/next": "^1.0.2",
"@types/node": "^17.0.35",
"@types/react": "^18.0.9",
"@typescript-eslint/parser": "^5.26.0",
"autoprefixer": "^10.4.7",
"eslint": "8.16.0",
"eslint-config-next": "12.1.6",
"eslint-plugin-import": "^2.26.0",
"husky": ">=8.0.1",
"lint-staged": ">=12.4.2",
"postcss": "^8.4.14",
"prettier": "^2.6.2",
"tailwindcss": "^3.1.8",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:eslint"
],
"*.{js,jsx,ts,tsx,scss}": [
"prettier --write"
]
}
}