-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.42 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.42 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
{
"name": "@globus/static-data-portal",
"version": "3.0.3",
"repository": "github:globus/static-data-portal",
"files": [],
"license": "Apache-2.0",
"scripts": {
"dev": "next dev --turbopack",
"preview": "node scripts/prebuild.js && next dev",
"prebuild": "node scripts/prebuild.js",
"build": "next build",
"start": "next start",
"lint": "next lint",
"docs": "npx typedoc",
"test": "jest"
},
"dependencies": {
"@chakra-ui/icons": "^2.2.4",
"@chakra-ui/next-js": "^2.4.2",
"@chakra-ui/react": "^2.10.5",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@globus/react-auth-context": "^0.2.0",
"@globus/react-components": "^2.0.0",
"@globus/react-query": "^0.2.0",
"@globus/sdk": "5.7.0",
"@mdx-js/loader": "^3.1.1",
"@mdx-js/react": "^3.1.0",
"@next/mdx": "15.5.9",
"@tanstack/react-query": "^5.90.20",
"@tanstack/react-query-devtools": "^5.91.3",
"@types/mdx": "^2.0.13",
"framer-motion": "^11.17.0",
"lodash": "^4.17.21",
"next": "15.5.9",
"react": "19.0.0",
"react-dom": "19.0.0",
"zustand": "^5.0.3"
},
"devDependencies": {
"@globus/types": "^0.0.7",
"@heroicons/react": "^2.2.0",
"@jest/globals": "^29.7.0",
"@playwright/test": "^1.57.0",
"@tanstack/eslint-plugin-query": "^5.66.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22",
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4",
"@typescript-eslint/eslint-plugin": "^8.53.0",
"@typescript-eslint/parser": "^8.31.0",
"dotenv": "^17.2.3",
"eslint": "^8.57.1",
"eslint-config-next": "15.5.9",
"eslint-config-prettier": "^10.1.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.6",
"eslint-plugin-promise": "^6",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"glob": "13.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.6.2",
"ts-node": "^10.9.2",
"typedoc": "^0.28.1",
"typedoc-plugin-markdown": "^4.6.1",
"typedoc-plugin-missing-exports": "^4.0.0",
"typescript": "^5.8.3"
},
"overrides": {
"@types/react": "19.0.10",
"@types/react-dom": "19.0.4"
}
}