-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.19 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
{
"name": "core-reader",
"version": "0.0.0",
"description": "CORE Reader is a full-featured PDF viewer with enhancements especially for academic papers",
"main": "next.config.js",
"author": "CORE, The Open University <[email protected]>",
"license": "UNLICENSED",
"private": true,
"scripts": {
"dev": "next dev",
"build": "node ./node_modules/.bin/design build icons && next build",
"start": "next start",
"lint:json": "prettier --ignore-path .gitignore --check '**/*.json'",
"lint:js": "eslint --ignore-path .gitignore --ext .js,.jsx .",
"lint:css": "stylelint --ignore-path .gitignore '**/*.css'",
"lint": "run-p lint:*"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@oacore/eslint-config-react": "^1.0.6",
"@oacore/prettier-config": "^1.0.6",
"@oacore/stylelint-config-base": "^1.0.6",
"babel-eslint": "^10.1.0",
"eslint": "^7.16.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"husky": "^4.3.0",
"lint-staged": "^10.5.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"source-map-loader": "^1.1.2",
"stylelint": "^13.8.0"
},
"dependencies": {
"@mdi/svg": "^5.8.55",
"@oacore/api": "^1.0.10",
"@oacore/design": "^4.0.3",
"@sentry/browser": "^5.29.2",
"@sentry/node": "^5.29.2",
"@zeit/next-workers": "^1.0.0",
"core-js": "^3.8.1",
"cssnano": "^4.1.10",
"file-saver": "^2.0.5",
"next": "^10.0.3",
"next-transpile-modules": "^6.0.0",
"pdfjs-dist": "^2.4.456",
"postcss": "8.4.14",
"postcss-extend": "^1.0.5",
"postcss-extend-rule": "^4.0.0",
"postcss-preset-env": "^7.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-ga4": "^2.1.0",
"react-to-print": "^2.12.1",
"smoothscroll-polyfill": "^0.4.4",
"webpack": "^4.44.2",
"worker-loader": "^2.0.0"
},
"engines": {
"node": ">=12"
}
}