-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.39 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
{
"name": "mock-config-inspector",
"type": "module",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=12.22.0"
},
"scripts": {
"prepare": "husky",
"build:app": "vite build --emptyOutDir",
"build:swc": "swc bin src index.ts -d dist --extensions .ts --copy-files --ignore **/*.test.ts",
"build": "yarn build:app && yarn build:swc",
"start": "yarn build && node ./dist/index.js",
"dev": "nodemon --watch src --watch app --watch mock-server.config.* -e js,ts,tsx,css,html --exec \"yarn start\"",
"dev:app": "vite",
"lint": "eslint . --fix",
"type": "tsc --noEmit",
"format": "prettier --write .",
"pretty": "yarn type && yarn lint && yarn format",
"preview": "vite preview"
},
"dependencies": {
"@radix-ui/react-dropdown-menu": "^2.1.2",
"@radix-ui/react-tooltip": "^1.1.6",
"@siberiacancode/reactuse": "^0.0.73",
"@types/ws": "^8.5.13",
"@types/yargs": "^17.0.33",
"ansi-colors": "^4.1.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"esbuild": "^0.24.0",
"get-port-please": "^3.1.2",
"h3": "^1.13.0",
"lucide-react": "^0.462.0",
"mrmime": "^2.0.0",
"open": "^8.4.2",
"please-upgrade-node": "^3.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.5",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.18.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@radix-ui/react-slot": "^1.1.0",
"@siberiacancode/eslint": "^2.6.0",
"@siberiacancode/prettier": "^1.1.1",
"@siberiacancode/stylelint": "^1.1.1",
"@swc/cli": "^0.5.1",
"@swc/core": "^1.9.3",
"@types/node": "^22.10.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.15.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"globals": "^15.12.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"mock-config-server": "4.0.1",
"nodemon": "^3.1.7",
"postcss": "^8.4.49",
"tailwindcss": "^3.4.15",
"typescript": "~5.6.2",
"typescript-eslint": "^8.15.0",
"vite": "^6.0.1"
},
"lint-staged": {
"*.css": [
"stylelint --fix"
],
"*.js": [
"prettier --write"
],
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}