-
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.13 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 3.13 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": "transcribe",
"version": "1.0.0",
"type": "module",
"description": "A guided learning platform for reading Greek manuscripts using IIIF manifests and interactive transcription exercises.",
"main": "index.tsx",
"scripts": {
"start": "vite",
"start:dev": "npm-run-all --parallel -r start types:watch",
"build": "vite build",
"preview": "vite preview",
"lint": "npm-run-all prettier eslint stylelint",
"lint-fix": "npm-run-all prettier-fix eslint-fix stylelint-fix",
"prettier": "prettier --config ./prettierrc.js --check \"src/**/*.*\" --cache",
"prettier-fix": "prettier --write --config ./prettierrc.js \"src/**/*.*\" --log-level error --cache",
"stylelint": "npx stylelint \"**/*.scss\" --cache --cache-strategy content",
"stylelint-fix": "npx stylelint \"**/*.scss\" --fix --cache --cache-strategy content",
"test": "vitest run",
"test-u": "npm run test -- -u",
"eslint": "eslint . --ext .ts,.tsx --cache --cache-strategy content",
"eslint-fix": "eslint . --fix --ext .ts,.tsx --cache --cache-strategy content",
"types:watch": "tsc --noEmit --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacobWPeterson/transcribe"
},
"author": "Jacob W. Peterson",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/JacobWPeterson/transcribe/issues"
},
"homepage": "https://github.com/JacobWPeterson/transcribe#readme",
"dependencies": {
"@emailjs/browser": "^4.4.1",
"@supabase/supabase-js": "^2.98.0",
"@testing-library/user-event": "^14.6.1",
"bootstrap": "^5.3.8",
"jspdf": "^4.2.0",
"mirador": "^4.0.0",
"mirador-image-tools": "^1.0.0",
"pluralize": "^8.0.0",
"react": "^19.2.3",
"react-bootstrap": "^2.10.10",
"react-dom": "^19.2.3",
"react-feather": "^2.0.10",
"react-hook-form": "^7.71.2",
"react-router": "^7.13.1"
},
"devDependencies": {
"@eslint/compat": "^2.0.1",
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/node": "^25.3.3",
"@types/pluralize": "^0.0.33",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/ui": "4.0.18",
"classnames": "2.5.1",
"eslint": "^9.39.2",
"eslint-plugin-compat": "^7.0.1",
"eslint-plugin-import": "^2.32.0",
"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.2",
"eslint-plugin-vitest": "^0.5.4",
"jsdom": "^28.1.0",
"npm-run-all": "^4.1.5",
"postcss": "8.5.8",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-normalize": "13.0.1",
"postcss-preset-env": "10.6.0",
"prettier": "^3.7.4",
"sass": "^1.97.1",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"stylelint-config-standard-scss": "^17.0.0",
"stylelint-order": "^7.0.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.0",
"vite-plugin-svgr": "4.5.0",
"vitest": "^4.0.7"
}
}