This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
forked from hypothesis/client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.68 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "inspera-hypothesis-client",
"version": "1.16.0",
"description": "Annotate with anyone, anywhere.",
"license": "BSD-2-Clause",
"homepage": "https://hypothes.is",
"bugs": "https://github.com/hypothesis/client/issues",
"repository": "hypothesis/client",
"dependencies": {
"deepmerge": "^4.2.2",
"paho-mqtt": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"@babel/preset-react": "^7.0.0",
"@hypothesis/frontend-build": "^1.1.0",
"@hypothesis/frontend-shared": "4.4.0",
"@octokit/rest": "^18.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^21.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@rollup/plugin-replace": "^3.0.0",
"@rollup/plugin-virtual": "^2.0.3",
"@sentry/browser": "^6.16.1",
"approx-string-match": "^2.0.0",
"autoprefixer": "^10.0.1",
"aws-sdk": "^2.345.0",
"axe-core": "^4.0.0",
"babel-plugin-inject-args": "^1.0.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-mockable-imports": "^2.0.0",
"babel-plugin-transform-async-to-promises": "^0.8.16",
"chai": "^4.1.2",
"chance": "^1.0.13",
"classnames": "^2.2.4",
"codecov": "^3.1.0",
"commander": "^8.0.0",
"core-js": "^3.19.3",
"cross-env": "^7.0.0",
"diff": "^5.0.0",
"dompurify": "^2.3.4",
"enzyme": "^3.8.0",
"enzyme-adapter-preact-pure": "^3.2.0",
"escape-html": "^1.0.3",
"escape-string-regexp": "^5.0.0",
"eslint": "^8.4.1",
"eslint-config-hypothesis": "^2.4.0",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-mocha": "^10.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-react-hooks": "^4.0.4",
"express": "^4.14.1",
"fancy-log": "^1.3.3",
"fetch-mock": "9",
"focus-visible": "^5.0.0",
"groom": "^1.1.1",
"gulp": "^4.0.0",
"gulp-changed": "^4.0.0",
"hammerjs": "^2.0.4",
"i18next": "^21.6.0",
"i18next-resource-store-loader": "^0.1.2",
"karma": "^6.0.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.2",
"karma-mocha": "^2.0.0",
"karma-mocha-reporter": "^2.0.4",
"karma-sinon": "^1.0.5",
"karma-source-map-support": "^1.4.0",
"katex": "^0.15.1",
"lodash.debounce": "^4.0.3",
"mkdirp": "^1.0.4",
"mocha": "9.1.3",
"moment": "^2.29.1",
"mustache": "^4.0.1",
"mustache-express": "^1.3.0",
"node-uuid": "^1.4.8",
"npm-packlist": "^3.0.0",
"postcss": "^8.4.4",
"preact": "^10.6.4",
"prettier": "2.5.1",
"puppeteer": "^13.0.0",
"redux": "^4.0.1",
"redux-thunk": "^2.4.1",
"request": "^2.88.2",
"request-promise": "^4.2.6",
"reselect": "^4.1.5",
"retry": "^0.13.1",
"rollup": "^2.61.1",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"sass": "^1.45.0",
"scroll-into-view": "^1.8.2",
"shallowequal": "^1.1.0",
"showdown": "^1.6.4",
"sinon": "^12.0.1",
"tiny-emitter": "^2.0.2",
"typescript": "^4.5.3",
"wrap-text": "^1.0.7"
},
"browserslist": "chrome 70, firefox 70, safari 11.1",
"prettier": {
"arrowParens": "avoid",
"singleQuote": true
},
"main": "./build/boot.js",
"scripts": {
"captions": "gulp captions",
"build": "cross-env NODE_ENV=production gulp build",
"lint": "eslint .",
"checkformatting": "prettier --check '**/*.{js,scss,d.ts}'",
"format": "prettier --list-different --write '**/*.{js,scss,d.ts}'",
"test": "gulp test",
"typecheck": "tsc --build tsconfig.json",
"report-coverage": "codecov -f coverage/coverage-final.json",
"version": "make clean build"
}
}