-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "hybrid-ckan",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"typecheck": "tsc --noEmit --incremental false",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "npm run lint --fix",
"test": "npx cypress run",
"test-browser": "npx cypress open"
},
"dependencies": {
"@headlessui/react": "^1.7.1",
"@heroicons/react": "^2.0.11",
"@portaljs/ckan": "^0.1.0",
"@portaljs/components": "0.3.1",
"@tailwindcss/line-clamp": "^0.4.2",
"@tailwindcss/typography": "^0.5.10",
"formik": "^2.2.9",
"gray-matter": "^4.0.3",
"hastscript": "^7.0.2",
"ky": "^1.0.1",
"minisearch": "^5.0.0",
"next": "^13.0.0",
"next-seo": "^5.5.0",
"next-themes": "^0.2.1",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.4.0",
"sass": "^1.54.0",
"simple-oauth2": "^5.0.0",
"superjson": "^1.12.2",
"swr": "^1.3.0",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/preset-react": "^7.18.6",
"@cloudflare/next-on-pages": "^1.6.0",
"@tailwindcss/forms": "^0.5.3",
"@types/cypress": "^1.1.3",
"@types/jest": "^29.2.2",
"@types/node": "18.6.1",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/tryghost__content-api": "^1.3.11",
"autoprefixer": "^10.4.9",
"cross-env": "^7.0.3",
"eslint": "8.20.0",
"eslint-config-next": "12.2.3",
"eslint-config-prettier": "^8.5.0",
"frontmatter-markdown-loader": "^3.7.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"tailwindcss": "^3.1.8",
"typescript": "4.7.4"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}