-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
96 lines (96 loc) · 3.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
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
{
"name": "kunapot.com",
"private": true,
"description": "Just another blog",
"version": "0.1.1",
"author": "aofleejay",
"scripts": {
"build": "gatsby build",
"dev": "gatsby develop",
"serve": "gatsby serve",
"format": "prettier --ignore-path .gitignore \"**/*.+(js|json|ts|tsx)\" --write",
"lint": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx src",
"test": "jest",
"test:watch": "jest --watch",
"coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls",
"deploy": "gatsby build && gh-pages -d public",
"blog:create": "ts-node src/scripts/create-blog.ts",
"image:resize": "ts-node src/scripts/resize-image.ts",
"prepare": "husky install"
},
"dependencies": {
"@deckdeckgo/highlight-code": "^4.4.0",
"autoprefixer": "^10.4.16",
"disqus-react": "^1.1.5",
"gatsby": "^5.12.12",
"gatsby-image": "^3.11.0",
"gatsby-plugin-dark-mode": "^1.1.2",
"gatsby-plugin-google-gtag": "^5.12.3",
"gatsby-plugin-image": "^3.12.3",
"gatsby-plugin-manifest": "^5.12.3",
"gatsby-plugin-offline": "^6.12.3",
"gatsby-plugin-sharp": "^5.12.3",
"gatsby-plugin-sitemap": "^6.12.3",
"gatsby-plugin-typescript": "^5.12.1",
"gatsby-remark-embed-video": "^3.2.1",
"gatsby-remark-highlight-code": "^3.3.0",
"gatsby-remark-images": "^7.12.3",
"gatsby-source-filesystem": "^5.12.1",
"gatsby-transformer-remark": "^6.12.3",
"gatsby-transformer-sharp": "^5.12.3",
"gsap": "^3.12.4",
"lodash.get": "^4.4.2",
"lodash.kebabcase": "^4.1.1",
"postcss": "^8.4.32",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@testing-library/react": "^14.1.2",
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/lodash.kebabcase": "^4.1.9",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@types/react-test-renderer": "^18.0.7",
"@types/sharp": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"babel-jest": "^29.7.0",
"babel-preset-gatsby": "^3.12.1",
"coveralls": "^3.1.1",
"dotenv": "^16.3.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.33.2",
"gatsby-plugin-postcss": "^6.12.0",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.32",
"gh-pages": "^6.1.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"inquirer": "^9.2.12",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"prettier": "3.1.1",
"pretty-quick": "^3.1.3",
"react-test-renderer": "^18.2.0",
"sharp": "^0.33.0",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"license": "MIT",
"homepage": "https://kunapot.com",
"repository": {
"type": "git",
"url": "https://github.com/aofleejay/kunapot.com"
},
"bugs": {
"url": "https://github.com/aofleejay/kunapot.com/issues"
},
"packageManager": "[email protected]"
}