-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 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
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
{
"name": "chatgpt-data-export-viewer",
"private": true,
"version": "1.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"prepare": "husky",
"build": "vite build",
"test": "vitest run --coverage",
"test:run": "vitest run",
"test:watch": "vitest",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:stylelint": "stylelint --config stylelint.config.ts \"src/**/*.{scss,css}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\" && stylelint --fix --config stylelint.config.ts \"src/**/*.{scss,css}\"",
"format": "prettier --write .",
"format:check": "prettier --check .",
"preview": "vite preview",
"build:cli": "tsx scripts/build-cli.ts",
"dist": "npm run build && npm run build:cli -- --out ./dist/import-dataset",
"version:bump": "npm version patch",
"commit": "gitmoji -c",
"validate:commit": "commitlint --config commitlint.config.ts",
"validate:tags": "tsx scripts/validate-tags.ts",
"release:notes": "bash scripts/generate-release-notes.sh"
},
"dependencies": {
"@fontsource-variable/inter": "^5.2.8",
"clsx": "^2.1.1",
"fflate": "^0.8.2",
"idb": "^8.0.3",
"lucide-react": "^0.575.0",
"prism-react-renderer": "^2.4.1",
"prismjs": "^1.30.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.0.2",
"react-window": "^2.2.7",
"remark-gfm": "^4.0.1"
},
"devDependencies": {
"@commitlint/cli": "^20.4.2",
"@commitlint/types": "^20.0.0",
"@eslint/js": "^9.39.1",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/eslint-plugin-jsx-a11y": "^6.10.1",
"@types/eslint-plugin-security": "^3.0.1",
"@types/node": "^25.3.0",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.13",
"@yao-pkg/pkg": "^6.14.1",
"esbuild": "^0.27.3",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"eslint-plugin-security": "^4.0.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unicorn": "^64.0.0",
"eslint-plugin-unused-imports": "^4.3.0",
"fake-indexeddb": "^6.2.4",
"gitmoji-cli": "^9.7.0",
"globals": "^17.3.0",
"husky": "^9.1.7",
"jiti": "^2.6.1",
"jsdom": "^28.1.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.6.2",
"sass-embedded": "^1.97.3",
"stylelint": "^17.3.0",
"stylelint-config-recess-order": "^7.6.1",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^7.0.1",
"tsx": "^4.19.2",
"typescript": "~5.9.3",
"typescript-eslint": "^8.48.0",
"vite": "^7.3.1",
"vitest": "^4.0.18"
}
}