-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.49 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
{
"private": true,
"name": "contentful-remix-starter-blog",
"description": "Remix starter for a Contentful blog (template) project",
"keywords": [
"contentful",
"remix",
"remix.run",
"starter",
"blog"
],
"license": "",
"author": {
"name": "Marco Link",
"email": "marcoxlink@gmail.com",
"url": "https://github.com/marcolink"
},
"scripts": {
"build": "remix build",
"dev": "remix dev",
"setup": "npx contentful-cli space import --content-file=contentful/export.json --space-id=$CONTENTFUL_SPACE --management-token=$CONTENTFUL_CMA_TOKEN",
"generate": "npx cf-content-types-generator -s $CONTENTFUL_SPACE -t $CONTENTFUL_CMA_TOKEN -o ./types/generated --localized"
},
"dependencies": {
"@apollo/client": "^3.9.5",
"@contentful/rich-text-from-markdown": "^15.16.13",
"@contentful/rich-text-react-renderer": "^15.19.4",
"@remix-run/node": "^1.19.1",
"@remix-run/react": "^1.19.1",
"@remix-run/serve": "^1.18.1",
"@remix-run/server-runtime": "^1.19.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reading-time": "^1.5.0"
},
"devDependencies": {
"@contentful/rich-text-types": "^16.2.0",
"@remix-run/dev": "^1.19.1",
"@remix-run/vercel": "^1.19.1",
"@types/graphql": "^14.5.0",
"@types/node": "^16.18.36",
"@types/react": "^18.0.27",
"@types/react-dom": "^17.0.9",
"contentful": "^10.6.7",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=18"
},
"sideEffects": false
}