-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
110 lines (110 loc) · 3.57 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
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "gpr",
"private": true,
"description": "GPR's website built using Gatsby and Markdown",
"version": "0.1.0",
"author": "GPR <gpr@gagahpangeran.com>",
"scripts": {
"build": "gatsby build",
"build:clean": "yarn clean && yarn build",
"clean": "gatsby clean",
"develop": "gatsby develop",
"format": "yarn format:prettier && yarn format:eslint",
"format:eslint": "eslint --fix \"**/*.{ts,tsx}\"",
"format:prettier": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md,scss}\"",
"install:clean": "rm -rf ./node_modules && yarn",
"lint": "yarn lint:prettier && yarn lint:eslint",
"lint:eslint": "eslint --quiet \"**/*.{ts,tsx}\"",
"lint:prettier": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md,scss}\"",
"new:blog": "tsx ./scripts/new-blog.ts",
"prepare": "husky",
"start": "gatsby develop",
"start:clean": "yarn clean && yarn start",
"serve": "gatsby serve",
"type-check": "tsc --noEmit",
"test": "jest",
"test:cov": "yarn test --coverage"
},
"dependencies": {
"@fontsource/fira-code": "^5.0.17",
"@fontsource/lato": "^5.0.20",
"@fontsource/rubik": "^5.0.19",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.0",
"gatsby": "^5.13.4",
"gatsby-plugin-catch-links": "^5.13.1",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-offline": "^6.13.2",
"gatsby-plugin-sass": "^6.13.1",
"gatsby-plugin-sharp": "^5.13.1",
"gatsby-remark-autolink-headers": "^6.13.1",
"gatsby-remark-copy-linked-files": "^6.13.1",
"gatsby-remark-external-links": "^0.0.4",
"gatsby-remark-images": "^7.13.1",
"gatsby-remark-katex": "^7.13.1",
"gatsby-remark-prismjs": "^7.13.1",
"gatsby-remark-responsive-iframe": "^6.13.1",
"gatsby-remark-smartypants": "^6.13.1",
"gatsby-remark-table-of-contents": "^2.0.0",
"gatsby-source-filesystem": "^5.13.1",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.13.1",
"katex": "^0.16.10",
"lodash.kebabcase": "^4.1.1",
"prismjs": "^1.29.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.1",
"remark-github": "^12.0.0",
"sass": "^1.75.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.1",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^15.0.1",
"@types/jest": "^29.5.12",
"@types/lodash.kebabcase": "^4.1.9",
"@types/prompts": "^2.4.9",
"@types/react": "^18.2.77",
"@types/react-dom": "^18.2.25",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"babel-jest": "^29.7.0",
"babel-preset-gatsby": "^3.13.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.0.11",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prompts": "^2.4.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md,scss}": [
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/gagahpangeran/gagahpangeran.com"
},
"bugs": {
"url": "https://github.com/gagahpangeran/gagahpangeran.com/issues"
}
}