forked from strawberry-graphql/strawberry.rocks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.1 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 3.1 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
83
84
85
86
87
88
89
90
91
{
"name": "strawberry-graphql",
"version": "1.0.0",
"author": "Patrick Arminio <patrick.arminio@@gmail.com>",
"engines": {
"node": "14.x",
"npm": "7.x"
},
"scripts": {
"prebuild": "npm run codegen",
"build": "next build",
"develop": "npm run dev",
"dev": "next dev",
"dev:inspect": "NODE_OPTIONS='--inspect' next dev",
"start": "next start",
"format": "prettier --write \"{,!(.next|node_modules|public|coverage|.cache)/**/}*.{js,jsx,ts,tsx,json}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"type-check:watch": "tsc --watch --noEmit",
"codegen": "graphql-codegen --config codegen.yml",
"codegen:watch": "npm run codegen -- --watch",
"lint": "next lint"
},
"keywords": [
"strawberry-graphql",
"strawberry",
"graphql",
"next.js",
"typescript"
],
"dependencies": {
"@docsearch/js": "^3.0.0-alpha.42",
"@docsearch/react": "^3.0.0-alpha.42",
"@hashicorp/remark-plugins": "^3.3.1",
"@heroicons/react": "^1.0.5",
"@octokit/core": "^3.5.1",
"@octokit/plugin-paginate-rest": "^2.17.0",
"@tailwindcss/aspect-ratio": "^0.4.0",
"classnames": "^2.3.1",
"github-slugger": "^1.4.0",
"gray-matter": "^4.0.3",
"hast-util-to-html": "^8.0.3",
"hast-util-to-string": "^2.0.0",
"jsonp": "^0.2.1",
"marked": "^3.0.8",
"next": "^12.0.7",
"next-mdx-remote": "^3.0.8",
"nprogress": "^0.2.0",
"parse-numeric-range": "^1.3.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-instantsearch-dom": "^6.19.0",
"react-refractor": "^2.1.5",
"refractor": "^4.3.0",
"rehype-parse": "^8.0.3",
"to-querystring": "^1.1.1",
"typescript": "^4.5.3",
"unified": "^10.1.1",
"unist-util-visit": "^4.1.0",
"unist-util-visit-parents": "^5.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.3.0",
"@graphql-codegen/typescript": "^2.4.1",
"@graphql-codegen/typescript-operations": "^2.2.1",
"@octokit/graphql-schema": "^10.73.0",
"@trivago/prettier-plugin-sort-imports": "^3.1.1",
"@types/classnames": "^2.3.1",
"@types/github-slugger": "^1.3.0",
"@types/jsonp": "^0.2.1",
"@types/marked": "^4.0.1",
"@types/node": "^17.0.8",
"@types/nprogress": "^0.2.0",
"@types/react": "^17.0.37",
"@types/react-dom": "^17.0.11",
"@types/refractor": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"autoprefixer": "^10.4.1",
"eslint": "^8.6.0",
"eslint-config-next": "12.0.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^15.8.0",
"prettier": "2.5.1",
"tailwindcss": "^3.0.10"
},
"repository": {
"type": "git",
"url": "https://github.com/strawberry-graphql/strawberry.rocks"
}
}