-
Notifications
You must be signed in to change notification settings - Fork 427
/
package.json
93 lines (93 loc) · 2.73 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
86
87
88
89
90
91
92
93
{
"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.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@hypothesis/frontend-build": "^3.1.0",
"@hypothesis/frontend-shared": "^8.6.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@sentry/browser": "^8.36.0",
"autoprefixer": "^10.4.20",
"bootstrap": "^4.6.2",
"classnames": "^2.5.1",
"escape-html": "^1.0.3",
"gulp": "^5.0.0",
"gulp-changed": "^5.0.2",
"gulp-cli": "^3.0.0",
"gulp-if": "^3.0.0",
"gulp-svgmin": "^4.1.0",
"jquery": "^3.7.1",
"normalize.css": "^8.0.0",
"popper.js": "^1.16.1",
"postcss": "^8.4.47",
"preact": "^10.24.3",
"rollup": "^4.22.4",
"sass": "^1.80.5",
"scroll-into-view": "^1.16.2",
"tailwindcss": "^3.4.13",
"wouter-preact": "^3.3.5"
},
"devDependencies": {
"@hypothesis/frontend-testing": "^1.3.1",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-mockable-imports": "^2.0.1",
"chai": "^5.1.2",
"diff": "^7.0.0",
"enzyme": "^3.11.0",
"enzyme-adapter-preact-pure": "^4.1.0",
"eslint": "^9.13.0",
"eslint-config-hypothesis": "^3.1.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.11.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-source-map-support": "^1.4.0",
"mocha": "^10.7.3",
"prettier": "^3.3.3",
"sinon": "^18.0.0",
"syn": "^0.2.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
},
"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
},
"packageManager": "[email protected]"
}