-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.16 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "next-app-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"lint:fix": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --fix",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"commit": "cz",
"reinstall": "rm -rf node_modules yarn.lock && yarn"
},
"dependencies": {
"@radix-ui/react-slot": "1.0.2",
"@t3-oss/env-nextjs": "0.6.1",
"@tanstack/react-query": "4.33.0",
"axios": "1.4.0",
"casper-js-sdk": "2.15.2",
"class-variance-authority": "0.7.0",
"clsx": "2.0.0",
"houseform": "1.11.0",
"next": "13.4.19",
"react": "18.2.0",
"react-dom": "18.2.0",
"sharp": "0.32.5",
"tailwind-merge": "1.14.0",
"zod": "3.22.2"
},
"devDependencies": {
"@commitlint/cli": "17.7.1",
"@commitlint/config-conventional": "17.7.0",
"@trivago/prettier-plugin-sort-imports": "4.2.0",
"@types/node": "20.5.1",
"@types/react": "18.2.20",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.4.0",
"@typescript-eslint/parser": "6.4.0",
"autoprefixer": "10.4.15",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.47.0",
"eslint-config-next": "13.4.19",
"eslint-config-prettier": "9.0.0",
"eslint-import-resolver-typescript": "3.6.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.3",
"lint-staged": "14.0.1",
"postcss": "8.4.28",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.4.1",
"tailwindcss": "3.3.3",
"tailwindcss-animate": "1.0.6",
"typescript": "5.1.6"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"prettier --ignore-path .gitignore --write",
"eslint --ignore-path .gitignore --fix"
]
},
"volta": {
"node": "16.14.0"
}
}