-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.62 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
{
"name": "kobra.dev",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"gql-codegen": "dotenv -e .env.contentful-codegen -- cross-var fix-contentful-schema --output graphql.schema.json --token %CONTENTFUL_CONTENT_TOKEN% --management %CONTENTFUL_MANAGEMENT_TOKEN% --space %CONTENTFUL_SPACE_ID% && graphql-codegen --config codegen.yml",
"gql-codegen-vercel": "fix-contentful-schema --output graphql.schema.json --token $CONTENTFUL_CONTENT_TOKEN --management $CONTENTFUL_MANAGEMENT_TOKEN --space $CONTENTFUL_SPACE_ID && graphql-codegen --config codegen.yml",
"analyze": "cross-env ANALYZE=true next build",
"analyze:server": "cross-env BUNDLE_ANALYZE=server next build",
"analyze:browser": "cross-env BUNDLE_ANALYZE=browser next build"
},
"dependencies": {
"@apollo/client": "3.3.19",
"@chakra-ui/icons": "1.0.13",
"@chakra-ui/react": "1.6.3",
"@emotion/react": "11.4.0",
"@emotion/styled": "11.3.0",
"framer-motion": "4.1.17",
"graphql": "15.5.0",
"next": "12.1.0",
"next-plausible": "1.6.1",
"next-seo": "4.24.0",
"react": "17.0.2",
"react-dom": "17.0.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.4",
"@graphql-codegen/typescript": "1.22.0",
"@graphql-codegen/typescript-operations": "1.17.16",
"@graphql-codegen/typescript-react-apollo": "2.2.4",
"@next/bundle-analyzer": "10.2.3",
"@types/node": "15.3.1",
"cross-env": "7.0.3",
"cross-var": "1.1.0",
"dotenv-cli": "4.0.0",
"fix-contentful-schema": "1.0.0",
"typescript": "4.3.2"
}
}