-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "thinkchart-fe",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"fix": "yarn fix:lint && yarn fix:format",
"fix:lint": "eslint src --fix",
"fix:format": "prettier . --write",
"ci": "yarn ci:lint && yarn ci:format && yarn ci:typecheck && yarn build",
"ci:lint": "eslint src",
"ci:format": "prettier . --check",
"ci:typecheck": "tsc --noEmit",
"postinstall": "husky"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.4.1",
"globals": "^17.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"typescript": "~6.0.2",
"typescript-eslint": "^8.58.2",
"vite": "^8.0.4"
},
"dependencies": {
"@stomp/stompjs": "^7.3.0",
"@tailwindcss/vite": "^4.2.3",
"axios": "^1.16.0",
"tailwindcss": "^4.2.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"*.{css,html,json}": [
"prettier --write"
]
},
"packageManager": "yarn@4.13.0"
}