-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.8 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.8 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
81
82
{
"name": "gilbert-contentful-website",
"version": "1.0.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "gatsby develop",
"develop": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"gatsby-provision": "gatsby-provision-contentful --contentful-data-path='./scripts/data.json' --space-id=$CONTENTFUL_SPACE_ID --management-token=$CONTENTFUL_MANAGEMENT_TOKEN",
"setup": "node ./scripts/setup.js",
"export-content": "contentful space export --space-id=$SPACE_ID --management-token=$MANAGEMENT_TOKEN --export-dir=scripts --content-file=data.json",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix"
},
"dependencies": {
"@contentful/rich-text-html-renderer": "^15.11.1",
"@contentful/rich-text-react-renderer": "^16.0.1",
"@contentful/rich-text-types": "^17.0.0",
"@fontsource/dm-mono": "^4.5.9",
"@fontsource/dm-sans": "^4.5.8",
"@vanilla-extract/babel-plugin": "^1.2.0",
"@vanilla-extract/css": "^1.9.0",
"@vanilla-extract/css-utils": "^0.1.2",
"@vanilla-extract/webpack-plugin": "^2.1.12",
"ajv": "^8.17.1",
"ajv-keywords": "^5.1.0",
"cookie": "^0.7.1",
"dotenv": "^16.4.7",
"framer-motion": "^12.6.2",
"gatsby": "^5.14.1",
"gatsby-plugin-feed": "^5.14.0",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.0.0",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-utils": "^4.14.0",
"gatsby-plugin-vanilla-extract": "^4.0.1",
"gatsby-remark-images": "^7.14.0",
"gatsby-source-contentful": "^8.15.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-json": "^5.14.0",
"gatsby-transformer-remark": "^6.14.0",
"gatsby-transformer-sharp": "^5.0.0",
"is-absolute-url": "^4.0.1",
"mdast-util-to-string": "^4.0.0",
"path-to-regexp": "^8.2.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-feather": "^2.0.9",
"remark-gfm": "^4.0.0",
"sharp": "^0.32.6",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@netlify/plugin-gatsby": "^3.8.2",
"babel-preset-gatsby": "^3.14.0",
"chalk": "4",
"contentful-cli": "^1.15.3",
"contentful-import": "^8.3.2",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.2",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-provision-contentful": "^0.0.5",
"husky": "^7.0.4",
"inquirer": "^8.2.0",
"lint-staged": "^12.3.5",
"prettier": "2.5.1",
"yargs-parser": "^21.0.0"
},
"resolutions": {
"cookie": "0.7.1"
}
}