-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
85 lines (85 loc) · 2.81 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": "colorconjure",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"bootstrap-dev": "npm run clean:install && npm i && npm i -D",
"dev": "vite",
"build": "tsc --build && vite build",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"preview": "vite preview",
"clean:install": "node -e \"const os = require('os'); const isWindows = os.platform() === 'win32'; if (isWindows) { console.log('Running on Windows'); require('child_process').execSync('npm run clean:install:win', { stdio: 'inherit' }); } else { console.log('Running on Linux or macOS'); require('child_process').execSync('npm run clean:install:mac', { stdio: 'inherit' }); }\"",
"clean:install:mac": "rm -rf node_modules dist && npm install",
"clean:install:win": "rmdir /s /q node_modules dist && npm install",
"prepare": "husky || true",
"test": "vitest run --coverage",
"test:watch": "vitest",
"analyze": "vite build --mode analyze"
},
"dependencies": {
"@headlessui/react": "2.2.0",
"@tanstack/react-table": "8.20.5",
"chroma-js": "3.1.2",
"clsx": "2.1.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "2.4.1",
"react-icons": "5.3.0",
"react-router-dom": "7.0.1"
},
"devDependencies": {
"@commitlint/cli": "19.6.0",
"@commitlint/config-conventional": "19.6.0",
"@eslint/js": "9.16.0",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/chroma-js": "2.4.4",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.16.0",
"@typescript-eslint/parser": "8.16.0",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-istanbul": "2.1.6",
"autoprefixer": "10.4.20",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0-rc.1",
"eslint-plugin-react-refresh": "0.4.14",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-tailwindcss": "3.17.5",
"globals": "15.13.0",
"husky": "9.1.7",
"jsdom": "25.0.1",
"lint-staged": "15.2.10",
"postcss": "8.4.49",
"prettier-plugin-tailwindcss": "0.6.9",
"rollup-plugin-visualizer": "5.12.0",
"tailwindcss": "3.4.15",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0",
"vite": "6.0.1",
"vitest": "2.1.6"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{ts,tsx}": [
"tsc --noEmit --skipLibCheck"
],
"**/*.{css,scss}": [
"prettier --write"
],
"**/*.md": [
"prettier --write"
]
}
}