-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.33 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
{
"name": "akita",
"version": "1.0.4",
"scripts": {
"dev": "next dev --turbopack",
"dev:webpack": "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 --turbopack",
"build:turbopack": "next build --turbopack",
"build:webpack": "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",
"cy:open": "CYPRESS_NODE_ENV=test cypress open",
"cy:run": "CYPRESS_NODE_ENV=test cypress run",
"cy:run:record": "CYPRESS_NODE_ENV=test cypress run --record --quiet",
"fixtures:update": "yarn node scripts/update-cypress-fixtures.cjs",
"fixtures:update:dry": "yarn node scripts/update-cypress-fixtures.cjs --dry-run",
"fixtures:update:one": "yarn node scripts/update-cypress-fixtures.cjs --fixture",
"fixtures:list": "yarn node scripts/update-cypress-fixtures.cjs --list"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^7.2.0",
"@fortawesome/free-brands-svg-icons": "^7.2.0",
"@fortawesome/free-regular-svg-icons": "^7.2.0",
"@fortawesome/free-solid-svg-icons": "^7.2.0",
"@fortawesome/react-fontawesome": "^3.3.1",
"@next/third-parties": "15.4.6",
"@sentry/nextjs": "^10.57.0",
"@tanstack/react-query": "^5.61.4",
"bootstrap": "^5.3.3",
"csv-stringify": "^6.7.0",
"date-fns": "^4.4.0",
"flagged": "^2.0.1",
"geolib": "^3.3.1",
"html-react-parser": "^5.1.12",
"iso-3166-1": "^2.1.1",
"iso-639-1": "^3.1.3",
"linkify-react": "^4.2.0",
"linkifyjs": "^4.2.0",
"maltipoo": "https://github.com/datacite/maltipoo#2.1.2",
"next": "15.5.18",
"next-plausible": "^3.12.5",
"react": "19.1.1",
"react-bootstrap": "^2.10.5",
"react-content-loader": "^7.1.2",
"react-cookie-consent": "^10.0.1",
"react-dom": "19.1.1",
"react-vega": "^7.6.0",
"sanitize-html": "^2.13.0",
"sass": "^1.49.0",
"swr": "^0.3.2",
"vega": "^6.2.0",
"vega-embed": "^6.25.0",
"vega-lite": "^5.19.0"
},
"devDependencies": {
"@cypress/react": "^6.1",
"@cypress/webpack-dev-server": "^1.7.0",
"@types/gtag.js": "^0.0.3",
"@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": "^10.0.3",
"cypress": "^15.17.0",
"eslint": "^7.29.0",
"prettier": "^2.3.1",
"typescript": "^5.3.3"
},
"license": "MIT",
"resolutions": {
"@fortawesome/fontawesome-common-types": "7.2.0",
"@types/react": "19.1.10",
"@types/react-dom": "19.1.7",
"minimatch": "^3.1.4",
"picomatch": "^2.3.2",
"postcss": "8.5.15"
},
"packageManager": "yarn@4.16.0+sha512.5374c94eb4ef6aa8188fb112f20c1aa6569f248d676c5e576e1fd2a1a4d8d87a96df65d9dfe1c2a0252cbe38bda46cf18d955005b81b43cc7607a5c9d56fd2b6"
}