-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.43 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
{
"name": "search",
"version": "1.0.2",
"description": "CORE's search interface",
"main": "pages/index.js",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/oacore/search.git"
},
"author": "CORE, The Open University <[email protected]>",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/oacore/search/issues"
},
"homepage": "https://github.com/oacore/search#readme",
"dependencies": {
"@oacore/design": "latest",
"@oacore/stylelint-config-base": "^1.0.6",
"@sentry/browser": "^5.28.0",
"@sentry/node": "^5.28.0",
"bibtex-parse-js": "0.0.24",
"core-js": "^3.8.1",
"cssnano": "^4.1.10",
"filesize": "^6.1.0",
"i18n-iso-countries": "^6.2.2",
"js-file-download": "^0.4.12",
"leaflet": "^1.8.0",
"leaflet.markercluster": "^1.4.1",
"mobx": "^6.0.0",
"mobx-react-lite": "^3.0.0",
"next": "^10.0.3",
"next-images": "^1.8.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-ga4": "^2.1.0",
"throttle-debounce": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/plugin-proposal-export-default-from": "^7.12.1",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.7",
"@babel/preset-react": "^7.12.7",
"@oacore/eslint-config-react": "^1.0.6",
"@oacore/prettier-config": "^1.0.6",
"@zeit/next-source-maps": "0.0.3",
"babel-eslint": "^10.1.0",
"eslint": "^7.15.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",
"npm-run-all": "^4.1.5",
"postcss": "8.4.14",
"postcss-custom-media": "^8.0.0",
"postcss-extend-rule": "^4.0.0",
"postcss-preset-env": "^7.7.2",
"prettier": "^2.2.1",
"stylelint": "^13.8.0"
},
"engines": {
"node": ">=16.18.1",
"npm": ">=8.19.2"
},
"scripts": {
"dev": "next dev",
"build": "node ./data/data-loader.js && 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:*"
}
}