-
Notifications
You must be signed in to change notification settings - Fork 453
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.97 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.97 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
102
{
"name": "h",
"private": true,
"version": "0.0.0",
"type": "module",
"description": "The Internet, peer reviewed.",
"scripts": {
"build": "gulp build",
"checkformatting": "prettier --check *.{js,ts,tsx} h/static/scripts",
"format": "prettier --list-different --write *.{js,ts,tsx} h/static/scripts",
"lint": "eslint h/static/scripts",
"test": "gulp test",
"typecheck": "tsc --build h/static/scripts/tsconfig.json"
},
"dependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.27.1",
"@babel/preset-react": "^7.28.5",
"@babel/preset-typescript": "^7.27.0",
"@hypothesis/annotation-ui": "^1.1.0",
"@hypothesis/frontend-build": "^5.0.0",
"@hypothesis/frontend-shared": "^10.3.2",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"@sentry/browser": "^9.33.0",
"@tailwindcss/postcss": "^4.1.18",
"bootstrap": "^4.6.2",
"classnames": "^2.5.1",
"dompurify": "^3.3.1",
"escape-html": "^1.0.3",
"gulp": "^5.0.1",
"gulp-changed": "^5.0.3",
"gulp-cli": "^3.0.0",
"gulp-if": "^3.0.0",
"gulp-svgmin": "^4.1.0",
"jquery": "^3.7.1",
"katex": "^0.16.22",
"normalize.css": "^8.0.0",
"popper.js": "^1.16.1",
"postcss": "^8.5.6",
"preact": "^10.27.3",
"rollup": "^4.53.3",
"sass": "^1.94.2",
"scroll-into-view": "^1.16.2",
"showdown": "^2.1.0",
"tailwindcss": "^4.1.18",
"wouter-preact": "^3.7.1"
},
"devDependencies": {
"@hypothesis/frontend-testing": "^1.7.1",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@vitest/browser": "^4.0.17",
"@vitest/browser-playwright": "^4.0.17",
"@vitest/coverage-istanbul": "^4.0.17",
"@vitest/eslint-plugin": "^1.6.6",
"babel-plugin-istanbul": "^7.0.1",
"babel-plugin-mockable-imports": "^2.0.1",
"chai": "^6.2.2",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.1.0",
"eslint": "^9.37.0",
"eslint-config-hypothesis": "^3.3.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^17.0.0",
"playwright": "^1.55.1",
"prettier": "^3.6.2",
"sinon": "^21.0.0",
"syn": "^0.2.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.16.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/hypothesis/h.git"
},
"license": "Simplified BSD License",
"bugs": {
"url": "https://github.com/hypothesis/h/issues"
},
"homepage": "https://github.com/hypothesis/h",
"browserslist": "chrome 92, firefox 90, safari 14.1",
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"importOrder": [
"^[./]"
],
"importOrderSeparation": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
},
"packageManager": "yarn@3.6.1"
}