This repository has been archived by the owner on Nov 3, 2023. It is now read-only.
generated from filipesmedeiros/next-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.6 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"license": "MIT",
"private": false,
"engines": {
"node": ">12"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"test": "echo TODO",
"lint": "next lint",
"lint:staged": "lint-staged",
"format": "prettier --write .",
"gen:component": "hygen component new",
"gen:apiHandler": "hygen apiHandler new",
"gen:page": "hygen page new",
"gen:hook": "hygen hook new"
},
"dependencies": {
"@heroicons/react": "^1.0.6",
"big.js": "^6.2.1",
"clsx": "^1.1.1",
"ip-address": "^8.1.0",
"nanocurrency": "^2.5.0",
"next": "^12.1.6",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rooks": "^5.11.8",
"swr": "^1.3.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.4",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/big.js": "^6.1.5",
"@types/node": "^16.11.41",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/parser": "^5.28.0",
"autoprefixer": "^10.4.7",
"daisyui": "^2.19.0",
"eslint": "8.4.1",
"eslint-config-next": "^12.1.6",
"eslint-config-prettier": "^8.5.0",
"husky": "^7.0.4",
"hygen": "^6.2.7",
"lint-staged": "^12.5.0",
"postcss": "^8.4.14",
"prettier-eslint": "^13.0.0",
"tailwindcss": "^3.1.3",
"typescript": "^4.7.4"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}