-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.3 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.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
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "transcribe",
"version": "1.0.0",
"type": "module",
"description": "A website to learn to read manuscripts",
"main": "index.tsx",
"author": "Jacob W. Peterson",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/JacobWPeterson/p46/issues"
},
"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 --config ./prettierrc.js --write \"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",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.scss": [
"stylelint --fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacobWPeterson/p46"
},
"homepage": "https://github.com/JacobWPeterson/p46#readme",
"dependencies": {
"@emailjs/browser": "^4.4.1",
"mirador": "^4.0.0",
"mirador-image-tools": "^1.0.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-feather": "^2.0.10",
"react-hook-form": "^7.71.2",
"react-pdf": "^10.4.1",
"react-router": "^7.13.1",
"react-select": "^5.10.2"
},
"devDependencies": {
"@eslint/compat": "^2.0.2",
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.2",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitejs/plugin-react-swc": "^4.2.3",
"@vitest/ui": "4.0.18",
"baseline-browser-mapping": "^2.10.0",
"classnames": "2.5.1",
"eslint": "^9.39.2",
"eslint-plugin-compat": "^7.0.0",
"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",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.3.1",
"npm-run-all": "^4.1.5",
"postcss": "8.5.6",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-normalize": "13.0.1",
"postcss-preset-env": "11.2.0",
"prettier": "^3.8.1",
"sass": "^1.97.3",
"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.1",
"vite-plugin-static-copy": "^3.2.0",
"vite-plugin-svgr": "4.5.0",
"vitest": "^4.0.16"
}
}