-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
97 lines (97 loc) · 2.66 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "next",
"version": "0.0.2",
"author":"Nguyen Tien Tai",
"license": "MIT",
"description": "Code clear and learn Next-13 with project E-Commerce",
"private": true,
"bugs": {
"url": "https://github.com/fdhhhdjd/E-Commerce-Next-13/issues"
},
"scripts": {
"dev": "PORT=3001 next dev",
"build": "next build",
"start": "next start",
"lint": "eslint . --ext .cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore && echo \"Tai Dev Check Eslint ✅\"",
"lint:fix": "eslint . --fix --ext .ts,.tsx",
"server": "json-server --watch ./src/database/db.json --port 5000",
"format": "prettier --write src/**/*.{ts,tsx}",
"prepare": "husky install",
"pre-commit": "echo \"[Husky] pre-commit\"",
"lint-staged": "lint-staged"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint",
"npm run format"
]
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"commitlint": {
"rules": {
"header-max-length": [
2,
"always",
130
]
},
"extends": [
"@commitlint/config-conventional"
]
},
"repository": {
"type": "git",
"url": "https://github.com/fdhhhdjd/E-Commerce-Next-13"
},
"dependencies": {
"@material-tailwind/react": "^1.2.4",
"@tanstack/react-query": "^5.0.5",
"@tanstack/react-query-devtools": "^5.0.0",
"@types/node": "20.8.6",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"autoprefixer": "10.4.16",
"axios": "^1.5.1",
"clsx": "^1.2.1",
"eslint-plugin-check-file": "^2.6.2",
"lodash": "^4.17.21",
"next": "13.5.5",
"postcss": "8.4.31",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hot-toast": "^2.4.1",
"react-icons": "^4.7.1",
"react-loader-spinner": "^5.4.5",
"superjson": "^2.0.0",
"tailwind-merge": "^1.8.1",
"tailwindcss": "3.3.3",
"typescript": "5.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^17.6.5",
"@commitlint/config-conventional": "^17.6.5",
"@types/lodash": "^4.14.199",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"eslint": "^8.51.0",
"eslint-config-next": "13.5.5",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3"
},
"contributors": [
"Nguyen Tien Tai (https://github.com/fdhhhdjd)"
]
}