-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.42 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
{
"name": "canopy-iiif",
"private": true,
"scripts": {
"build": "next build",
"build:static": "npm run build && next export",
"dev": "next -p 5001",
"lint": "next lint",
"predev": "ts-node canopy.ts dev",
"prebuild": "ts-node canopy.ts",
"postbuild": "next-sitemap",
"start": "next start",
"test": "jest --watch",
"test:ci": "jest --ci",
"test-build": "next build",
"ts-lint": "tsc --noEmit --incremental --watch",
"ts-lint-commit-hook": "tsc --noEmit"
},
"dependencies": {
"@iiif/parser": "^1.1.2",
"@iiif/vault-helpers": "^0.10.0",
"@radix-ui/colors": "^3.0.0",
"@radix-ui/react-accordion": "^1.1.1",
"@radix-ui/react-checkbox": "^1.0.1",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/themes": "^3.0.2",
"@samvera/clover-iiif": "^2.8.2",
"@stitches/react": "^1.2.8",
"axios": "^0.24.0",
"clsx": "^1.1.1",
"copy-to-clipboard": "^3.3.3",
"flexsearch": "^0.7.31",
"framer-motion": "^10.9.4",
"gray-matter": "^4.0.3",
"leaflet": "^1.9.3",
"leaflet.markercluster": "^1.5.3",
"lodash": "^4.17.21",
"next": "^13.4.19",
"next-absolute-url": "^1.2.2",
"next-mdx-remote": "^4.4.1",
"next-seo": "^6.1.0",
"next-sitemap": "^4.2.3",
"next-themes": "^0.3.0",
"prism-react-renderer": "^1.3.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.4.1",
"react-leaflet": "^4.2.0",
"react-masonry-css": "^1.0.16",
"slugify": "^1.6.3",
"swiper": "^9.1.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.23.2",
"@iiif/presentation-3": "^1.1.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@types/jest": "^29.5.5",
"@types/leaflet": "^1.9.0",
"@types/lodash": "^4.14.178",
"@types/mdx": "^2.0.9",
"@types/node": "^18.11.18",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@vitejs/plugin-react": "^4.1.0",
"charm": "^1.0.2",
"dotenv": "^16.1.3",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-testing-library": "^5.10.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"next-router-mock": "^0.9.10",
"ts-node": "^10.9.1",
"typescript": "^5.0.2",
"vitest": "^0.34.6"
}
}