-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "hclab-official-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"commit": "git add .&& git cz",
"push": "git push"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog-zh"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.12",
"@types/node": "^20.3.2",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@unocss/postcss": "^0.53.4",
"add": "^2.0.6",
"cz-conventional-changelog-zh": "^0.0.2",
"eslint": "^8.44.0",
"eslint-config-next": "^13.4.7",
"next": "^13.4.7",
"next-seo": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.8",
"typescript": "^5.1.6",
"unocss": "^0.53.4"
},
"devDependencies": {
"@ileostar/eslint-config": "^0.3.0",
"cypress": "^13.2.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"install": "^0.13.0",
"lint-staged": "^14.0.1"
}
}