-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
97 lines (97 loc) · 2.54 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
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
92
93
94
95
96
97
{
"name": "surabayajs.org",
"packageManager": "[email protected]",
"description": "Landing page for SurabayaJS 🐊",
"version": "6.0.0",
"repository": "https://github.com/surabayajs/surabayajs.org.git",
"author": "Griko Nibras <[email protected]>",
"scripts": {
"build": "node scripts/build.mjs && next build && yarn sitemap",
"clean": "rimraf \".next\" \"public/!(.gitkeep)\"",
"codegen": "env-cmd yarn graphql-codegen",
"deduplicate": "npx yarn-deduplicate && yarn install",
"dev": "next",
"export": "next export",
"lint": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\" && tsc --noEmit",
"prepare": "husky install",
"sitemap": "next-sitemap --config src/config/sitemap.js",
"start": "next start",
"publish": "yarn install && yarn build && yarn export"
},
"dependencies": {
"@chakra-ui/react": "^1",
"@emotion/cache": "^11",
"@emotion/react": "^11",
"@emotion/server": "^11",
"@emotion/styled": "^11",
"@fontsource/cousine": "^4",
"@fontsource/manrope": "^4",
"cross-fetch": "^3",
"date-fns": "^2",
"framer-motion": "^4",
"graphql": "^16",
"graphql-request": "^4",
"graphql-tag": "^2",
"litkey": "^0",
"next": "^12",
"next-seo": "^5",
"next-sitemap": "^2",
"nprogress": "^0",
"react": "^17",
"react-dom": "^17",
"react-icons": "^4",
"react-markdown": "^8",
"typescript": "^4"
},
"devDependencies": {
"@graphql-codegen/add": "^3",
"@graphql-codegen/cli": "^2",
"@graphql-codegen/schema-ast": "^2",
"@graphql-codegen/typescript": "^2",
"@graphql-codegen/typescript-graphql-request": "^4",
"@graphql-codegen/typescript-operations": "^2",
"@next/eslint-plugin-next": "^12",
"@types/node": "^14",
"@types/nprogress": "^0",
"@types/react": "^17",
"@types/react-dom": "^17",
"copy": "^0",
"env-cmd": "^10",
"eslint": "^8",
"favicons": "7.0.0-beta.3",
"husky": "^7",
"lint-staged": "^12",
"npm-run-all": "^4",
"rimraf": "^3"
},
"eslintConfig": {
"extends": [
"plugin:@next/next/recommended"
],
"ignorePatterns": [
".next",
"generated",
"node_modules"
],
"rules": {
"jsx-a11y/anchor-is-valid": "off"
},
"root": true
},
"lint-staged": {
"*.{json,md}": [
"prettier --write"
],
"**/*.{js,cjs,mjs,jsx,ts,tsx}": [
"eslint --fix"
]
},
"prettier": {
"endOfLine": "auto",
"printWidth": 120,
"semi": true,
"singleQuote": false,
"trailingComma": "all"
},
"license": "MIT"
}