-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·73 lines (73 loc) · 2.35 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
{
"private": true,
"name": "minimal-blog",
"description": "Typography driven, feature-rich blogging theme with minimal aesthetics. Includes tags/categories support and extensive features for code blocks such as live preview, line numbers, and line highlighting.",
"version": "1.3.16",
"author": "LekoArts",
"license": "0BSD",
"starter-name": "gatsby-starter-minimal-blog",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"develop:cypress": "cross-env CYPRESS_SUPPORT=y yarn develop",
"build:cypress": "cross-env CYPRESS_SUPPORT=y yarn build",
"start": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "npm run lint -- --fix",
"type-check": "tsc --noEmit",
"test": "jest",
"prepare": "husky install"
},
"dependencies": {
"@lekoarts/gatsby-theme-minimal-blog": "^6.2.1",
"@nivo/bar": "^0.84.0",
"@nivo/core": "^0.84.0",
"@nivo/geo": "^0.84.0",
"@nivo/line": "^0.84.0",
"gatsby": "^5.13.6",
"gatsby-plugin-feed": "^5.13.1",
"gatsby-plugin-google-gtag": "^5.13.1",
"gatsby-plugin-manifest": "^5.13.1",
"gatsby-plugin-sitemap": "^6.13.1",
"gatsby-plugin-webpack-statoscope": "^1.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@testing-library/dom": "^10.1.0",
"@testing-library/jest-dom": "^6.4.8",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"babel-jest": "^29.7.0",
"babel-preset-gatsby": "^3.13.2",
"cross-env": "^7.0.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"husky": "^9.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.8",
"prettier": "^3.3.3",
"typescript": "^5.5.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run lint:fix"
],
"{*.{json,md,mdx,yml,yaml}}": [
"npm run prettier --write"
]
}
}