-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.95 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.95 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
{
"name": "jovertical.dev-v2",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format": "prettier --write .",
"graphql:compile": "dotenv -c -- bash -c 'gql.tada generate schema https://graphql.datocms.com --header \"X-Exclude-Invalid: true\" --header \"Authorization: $DATOCMS_PUBLISHED_CONTENT_CDA_TOKEN\"'",
"test:format": "prettier --check .",
"test:types": "tsc -p ./tsconfig.spec.json --noEmit",
"test:lint": "next lint",
"test": "npm run test:format && npm run test:types && npm run test:lint",
"prepare": "npm run graphql:compile"
},
"dependencies": {
"@datocms/cda-client": "^0.2.2",
"@datocms/cma-client": "^3.3.5",
"@headlessui/react": "^2.1.2",
"@heroicons/react": "^2.1.5",
"@libsql/client": "^0.8.0",
"classnames": "^2.5.1",
"dayjs": "^1.11.12",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"gql.tada": "^1.8.2",
"jsdom": "^24.1.1",
"next": "^15.1.4",
"query-string": "^9.1.0",
"react": "^18.3.1",
"react-datocms": "^7.0.1",
"react-dom": "^18.3.1",
"rehype-autolink-headings": "^7.1.0",
"rehype-prism-plus": "^2.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.1.0",
"rss": "^1.2.2",
"serialize-error": "^11.0.3",
"typescript": "5.3.2",
"unified": "^11.0.5"
},
"devDependencies": {
"@0no-co/graphqlsp": "^1.12.12",
"@tailwindcss/typography": "^0.5.13",
"@types/jsdom": "^21.1.7",
"@types/mapbox__rehype-prism": "^0.8.3",
"@types/node": "20.14.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/rss": "^0.0.32",
"autoprefixer": "^10.4.19",
"dotenv-cli": "^7.4.2",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postcss": "^8.4.39",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.6"
}
}