-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
97 lines (97 loc) · 2.95 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
94
95
96
97
{
"name": "lms",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "gulp build",
"checkformatting": "prettier --cache --check lms/**/*.{cjs,js,scss,ts,tsx}",
"format": "prettier --cache --list-different --write lms/**/*.{cjs,js,scss,ts,tsx}",
"lint": "eslint --cache --ignore-pattern build .",
"test": "gulp test",
"typecheck": "tsc --build lms/static/scripts/tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hypothesis/lms.git"
},
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/hypothesis/lms/issues"
},
"homepage": "https://github.com/hypothesis/lms#readme",
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.25.9",
"@babel/preset-typescript": "^7.26.0",
"@hypothesis/frontend-build": "^3.0.0",
"@hypothesis/frontend-shared": "^8.8.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-replace": "^6.0.1",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-virtual": "^3.0.2",
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
"autoprefixer": "^10.4.19",
"classnames": "^2.5.1",
"focus-visible": "^5.2.1",
"gulp": "^5.0.0",
"karma-chrome-launcher": "^3.2.0",
"normalize.css": "^8.0.1",
"postcss": "^8.4.47",
"preact": "10.23.2",
"rollup": "^4.24.3",
"sass": "^1.80.5",
"tailwindcss": "^3.4.10",
"tiny-emitter": "^2.1.0",
"wouter-preact": "^3.3.5"
},
"devDependencies": {
"@hypothesis/frontend-testing": "^1.2.2",
"@types/gapi": "^0.0.47",
"@types/google.accounts": "^0.0.15",
"@types/google.picker": "^0.0.43",
"axe-core": "^4.9.1",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-mockable-imports": "^2.0.1",
"chai": "^4.3.10",
"diff": "^5.2.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.2",
"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-chai": "^0.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.0.4",
"karma-sinon": "^1.0.5",
"karma-source-map-support": "^1.4.0",
"mocha": "^10.2.0",
"navigation-api-types": "^0.5.1",
"prettier": "3.2.5",
"sinon": "^19.0.2",
"typescript": "^5.2.2",
"typescript-eslint": "^8.12.2"
},
"prettier": {
"arrowParens": "avoid",
"singleQuote": true,
"importOrder": [
"^[./]"
],
"importOrderSeparation": true,
"plugins": [
"@trivago/prettier-plugin-sort-imports"
]
},
"browserslist": "chrome 92, firefox 90, safari 14.1",
"packageManager": "[email protected]"
}