-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.73 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
52
53
54
55
56
57
58
{
"scripts": {
"dev": "next dev",
"start": "next start",
"lint": "next lint",
"build": "next build",
"prebuild": "yarn generate",
"generate": "graphql-codegen --config codegen-client.yml",
"format": "prettier -w 'src/**/*.{ts,tsx,graphql,yml,json}' '{webpack,postcss,tailwind,vercel,.eslintrc}*.{js,json}' '*.{md,yml}'",
"prestart": "yarn build",
"check:all": "yarn format && yarn lint"
},
"name": "space-api",
"version": "1.0.0",
"license": "MIT",
"private": true,
"browserslist": [
"last 1 Chrome version"
],
"devDependencies": {
"@apollo/client": "3.7.4",
"@graphql-codegen/add": "3.2.3",
"@graphql-codegen/cli": "2.16.3",
"@graphql-codegen/fragment-matcher": "3.3.3",
"@graphql-codegen/time": "3.2.3",
"@graphql-codegen/typescript": "2.8.7",
"@graphql-codegen/typescript-apollo-client-helpers": "2.2.6",
"@graphql-codegen/typescript-operations": "2.5.12",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"@next/eslint-plugin-next": "13.1.2",
"@types/react": "18.0.26",
"@typescript-eslint/eslint-plugin": "5.48.2",
"@typescript-eslint/parser": "5.48.2",
"autoprefixer": "10.4.13",
"babel-loader": "9.1.2",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.32.0",
"eslint-config-next": "13.1.2",
"eslint-plugin-jsx-a11y": "6.7.1",
"graphql": "16.6.0",
"graphql-tools": "8.3.15",
"markdown-to-jsx": "7.1.8",
"next": "13.1.2",
"prettier": "2.8.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"tailwindcss": "3.2.4",
"typescript": "4.9.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"raw-loader": "4.0.2"
}
}