-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.08 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
59
60
61
62
63
64
65
66
{
"name": "lanjutkoding",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "next-sitemap",
"start": "next start",
"codegen": "graphql-codegen --config scripts/codegen.js",
"update-schema": "graphql-codegen --config scripts/updateSchema.js",
"generate": "npm run update-schema && npm run codegen"
},
"dependencies": {
"@apollo/client": "3.5.10",
"@octokit/request": "^5.4.15",
"@supabase/supabase-js": "^2.2.3",
"@tailwindcss/typography": "^0.4.1",
"cheerio": "^1.0.0-rc.6",
"cors": "^2.8.5",
"dayjs": "^1.11.7",
"graphql": "^15.7.2",
"next": "12",
"next-seo": "5.15.0",
"prismjs": "^1.29.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"smooth-scroll": "^16.1.3"
},
"devDependencies": {
"@babel/core": "^7.20.12",
"@graphql-codegen/cli": "^3.2.2",
"@graphql-codegen/introspection": "^3.0.1",
"@graphql-codegen/schema-ast": "^3.0.1",
"@graphql-codegen/typescript": "^3.0.2",
"@graphql-codegen/typescript-operations": "^3.0.2",
"@graphql-codegen/typescript-react-apollo": "^3.3.7",
"@next/eslint-plugin-next": "^13.0.7",
"@types/cors": "^2.8.13",
"@types/node": "^16",
"@types/node-fetch": "^2.6.2",
"@types/prismjs": "^1.26.0",
"@types/react": "^17.0.5",
"@types/smooth-scroll": "^16.1.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"autoprefixer": "^10.2.5",
"babel-plugin-prismjs": "^2.1.0",
"dotenv": "^8.2.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"graphql-codegen-apollo-next-ssr": "^1.7.4",
"graphql-tag": "^2.12.6",
"next-sitemap": "^1.9.12",
"postcss": "^8.2.13",
"prettier": "^2.8.1",
"tailwindcss": "^2.2.19",
"typescript": "^4.9.4"
}
}