generated from hsborges/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.49 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
{
"name": "@gittrends-app/web",
"version": "0.0.1",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"prepare": "husky",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"verify": "run-s lint build",
"prettier": "prettier --write src",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@gittrends-app/core": "file:libs/core",
"@heroui/react": "2.7.2",
"@next/third-parties": "^15.1.6",
"@tabler/icons-react": "^3.27.1",
"dayjs": "^1.11.13",
"echarts": "^5.6.0",
"echarts-for-react": "^3.0.2",
"fetch-retry": "^6.0.0",
"framer-motion": "^12.4.4",
"idb-keyval": "^6.2.1",
"lodash": "^4.17.21",
"lz-string": "^1.5.0",
"next": "^15.1.3",
"numeral": "^2.0.6",
"p-limit": "^6.2.0",
"query-string": "^9.1.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-use": "^17.6.0",
"swr": "^2.3.0",
"tailwind-merge": "^2.6.0",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@next/eslint-plugin-next": "^15.1.3",
"@tsconfig/node20": "^20.1.4",
"@types/echarts": "^5.0.0",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.2",
"@types/numeral": "^2.0.5",
"@types/react": "^19.0.2",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"@vitest/coverage-v8": "^3.0.6",
"autoprefixer": "^10.4.20",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv-flow": "^4.1.0",
"eslint": "^8.54.0",
"eslint-config-google": "^0.14.0",
"eslint-config-next": "^15.1.7",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.3",
"eslint-plugin-react-hooks": "^5.1.0",
"husky": "^9.1.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"prettier-plugin-organize-imports": "^4.1.0",
"tailwindcss": "^3.4.17",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"type-fest": "^4.31.0",
"typescript": "^5.7.2",
"vitest": "^3.0.6"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}