-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
110 lines (110 loc) · 3.44 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
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
{
"name": "dc-nextjs",
"private": true,
"scripts": {
"analyze": "ANALYZE=true npm run build",
"build": "next build",
"dev": "node server.js",
"dev:playwright": "NEXT_PUBLIC_DCAPI_ENDPOINT=https://dc-test-api.rdc-staging.library.northwestern.edu/api/v2 npm run dev",
"export": "next build && next export",
"lint": "next lint",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier . --write",
"ts-lint": "tsc --noEmit --incremental --watch",
"ts-lint-commit-hook": "tsc --noEmit",
"start": "next start",
"start:playwright": "NEXT_PUBLIC_DCAPI_ENDPOINT=https://dc-test-api.rdc-staging.library.northwestern.edu/api/v2 next start",
"test": "jest --watch",
"test:ci": "jest",
"test:playwright": "playwright test"
},
"dependencies": {
"@honeybadger-io/js": "^5.1.1",
"@honeybadger-io/webpack": "^5.1.0",
"@iiif/parser": "^1.0.10",
"@next/bundle-analyzer": "^14.0.3",
"@next/font": "^14.0.3",
"@next/third-parties": "^14.2.3",
"@nulib/dcapi-types": "^2.5.0",
"@nulib/design-system": "^1.6.2",
"@nulib/use-markdown": "^0.2.1",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.0.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-aspect-ratio": "^1.0.1",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-dropdown-menu": "^2.0.1",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-radio-group": "^1.1.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-tabs": "^1.0.1",
"@radix-ui/react-tooltip": "^1.0.7",
"@samvera/clover-iiif": "^2.10.1",
"@samvera/image-downloader": "^1.1.6",
"@stitches/react": "^1.2.6",
"axios": "^1.2.2",
"cookies-next": "^4.2.1",
"framer-motion": "^11.2.3",
"jsonwebtoken": "^9.0.0",
"next": "^14.2.3",
"react": "^18.2.0",
"react-content-loader": "^7.0.2",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.13",
"react-masonry-css": "^1.0.16",
"react-share": "^5.0.3",
"rehype-raw": "^7.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"swiper": "^9.4.1",
"unified": "^11.0.4",
"uuid": "^10.0.0"
},
"devDependencies": {
"@elastic/elasticsearch": "7.17",
"@iiif/presentation-3": "^1.1.3",
"@playwright/test": "^1.45.2",
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.0.4",
"@types/jest": "^29.4.0",
"@types/node": "^20.11.23",
"@types/openseadragon": "^3.0.4",
"@types/react": "^18.2.61",
"@types/react-sticky-el": "^1.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"babel-jest": "^29.6.2",
"dotenv": "^16.4.5",
"eslint": "^9.4.0",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-testing-library": "^6.0.1",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"next-router-mock": "^0.9.1-beta.0",
"prettier": "^3.0.1",
"ts-jest": "^29.0.5",
"typescript": "^5.4.2",
"wait-on": "^7.2.0"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
},
"next-unused": {
"entrypoints": [
"stitches.config.ts"
],
"include": [
"components",
"context",
"hooks",
"mocks",
"types",
"styles"
]
}
}