-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.36 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.36 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
{
"name": "blog-example",
"version": "0.1.0",
"private": true,
"scripts": {
"build": "next build",
"codegen": "rimraf './**/*.generated.ts' && graphql-codegen --config codegen.yml",
"dev": "next dev -p 4000",
"fmt": "prettier --write --ignore-path '.prettierignore' \"./**/*.{js,jsx,ts,tsx}\"",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"fecha": "^4.2.1",
"graphql": "^15.5.1",
"graphql-request": "^3.5.0",
"graphql-tag": "^2.12.5",
"next": "11.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-instagram-embed": "^3.0.0",
"react-is": "^17.0.2",
"react-markdown": "^6.0.3",
"reading-time": "^1.3.0",
"rehype-raw": "^5.1.0",
"remark-gfm": "^1.0.0",
"styled-components": "^5.3.0",
"swiper": "^6.8.0"
},
"devDependencies": {
"@graphql-codegen/cli": "1.21.8",
"@graphql-codegen/introspection": "1.18.2",
"@graphql-codegen/typescript": "1.23.0",
"@graphql-codegen/typescript-graphql-request": "^3.2.5",
"@graphql-codegen/typescript-operations": "1.18.4",
"@types/graphql": "^14.5.0",
"@types/react": "17.0.15",
"@types/styled-components": "^5.1.11",
"babel-plugin-styled-components": "^1.13.2",
"eslint": "7.31.0",
"eslint-config-next": "11.0.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"typescript": "4.3.5"
}
}