-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.75 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.75 KB
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
{
"name": "akita",
"version": "1.0.4",
"scripts": {
"dev": "next dev",
"dev-all": "concurrently \"yarn dev\" \"yarn api\"",
"prod-all": "concurrently \"yarn dev\" \"yarn api-prod\"",
"api": "uv sync --project api && DATACITE_API_URL='https://api.stage.datacite.org/dois/' uv run --project api flask --app api/app run -p 5328",
"api-prod": "uv sync --project api && DATACITE_API_URL='https://api.datacite.org/dois/' uv run --project api flask --app api/app run -p 5328",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"prettier-format": "prettier --config .prettierrc.json '**/*.ts|tsx' --write",
"lint": "./node_modules/.bin/eslint . --ext .ts,.tsx",
"ci": "CYPRESS_NODE_ENV=test yarn dev & wait-on http://localhost:3000 && yarn cy:run --record --quiet",
"cy:coverage": "npx nyc report --reporter=lcov",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"nyc": {
"reporter": [
"html"
]
},
"dependencies": {
"@apollo/client": "^3.11.1",
"@apollo/experimental-nextjs-app-support": "^0.11.2",
"@cypress/webpack-dev-server": "^1.7.0",
"@formatjs/intl-numberformat": "^7.1.4",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-brands-svg-icons": "^7.1.0",
"@fortawesome/free-regular-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.13.3",
"@fortawesome/react-fontawesome": "^0.2.3",
"@next/eslint-plugin-next": "16.0.10",
"@next/react-dev-overlay": "^12.0",
"@next/third-parties": "15.4.6",
"@sentry/browser": "^10.39.0",
"@sentry/node": "^5.21.4",
"@sentry/webpack-plugin": "^2.1.0",
"@tanstack/react-query": "^5.61.4",
"@testing-library/user-event": "^11.2.1",
"@types/gtag.js": "^0.0.3",
"@types/jsonwebtoken": "^8.5.0",
"@types/lodash": "^4.14.154",
"@zeit/next-source-maps": "0.0.4-canary.1",
"bootstrap": "^5.3.3",
"csv-stringify": "^6.4.0",
"date-fns": "^4.1.0",
"flagged": "^2.0.1",
"geolib": "^3.3.1",
"graphql": "^15.5.1",
"html-react-parser": "^5.1.12",
"iso-3166-1": "^2.1.1",
"iso-639-1": "^3.1.3",
"js-yaml-loader": "^1.2.2",
"jsonwebtoken": "^8.5.1",
"linkify-react": "^4.2.0",
"linkifyjs": "^4.2.0",
"maltipoo": "https://github.com/datacite/maltipoo#2.1.0",
"next": "15.5.14",
"next-plausible": "^3.12.5",
"node-fetch": "^2.6.0",
"nuqs": "^1.16.0",
"react": "19.1.1",
"react-bootstrap": "^2.10.5",
"react-content-loader": "^7.0.2",
"react-cookie-consent": "^8.0.0",
"react-dom": "19.1.1",
"react-share": "^4.2.1",
"react-vega": "^7.6.0",
"sanitize-html": "^2.13.0",
"sass": "^1.49.0",
"swr": "^0.3.2",
"urijs": "^1.19.11",
"vega": "^6.2.0",
"vega-embed": "^6.25.0",
"vega-lite": "^5.19.0",
"wait-on": "^9.0.3"
},
"devDependencies": {
"@cypress/browserify-preprocessor": "^3.0.0",
"@cypress/code-coverage": "^3.9.7",
"@cypress/react": "^6.1",
"@testing-library/react": "^10.2.1",
"@types/node": "^12.12.39",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"@types/sanitize-html": "^2.11.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"concurrently": "^9.1.2",
"cypress": "^13.6.3",
"cypress-dotenv-flow": "^1.2.2",
"debug": "4.3.1",
"dotenv-flow": "^3.2.0",
"eslint": "^7.29.0",
"eslint-config-next": "15.4.6",
"nyc": "^15.1.0",
"prettier": "^2.3.1",
"tar": "7.5.8",
"ts-loader": "^7.0.5",
"tsify": "^4.0.2",
"typescript": "^5.3.3",
"vercel": "^37.8.0"
},
"license": "MIT",
"resolutions": {
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"**/@fortawesome/fontawesome-common-types": "^0.3.0"
}
}