-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.25 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
{
"name": "mong.sh",
"version": "0.6.0",
"private": true,
"description": "mong.sh",
"author": "mong",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write --config ./.prettierrc './src/**/*.{ts,tsx}'",
"prepare": "husky install",
"pre-commit:msg": "echo ' > Preheating the oven...' && exit 0",
"pre-commit:lint-staged": "lint-staged",
"pre-commit:checks": "pre-commit:lint-staged typecheck"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint"
],
"src/**/*.ts?(x)": [
"eslint"
]
},
"dependencies": {
"@emotion/react": "^11.10.4",
"@emotion/styled": "^11.10.4",
"@mdx-js/react": "^2.1.3",
"gatsby": "^4.22.0",
"gatsby-plugin-emotion": "^7.22.0",
"gatsby-plugin-image": "^2.22.0",
"gatsby-plugin-manifest": "^4.22.0",
"gatsby-plugin-mdx": "^4.1.0",
"gatsby-plugin-sharp": "^4.22.0",
"gatsby-plugin-sitemap": "^5.22.0",
"gatsby-source-filesystem": "^4.22.0",
"gatsby-transformer-sharp": "^4.22.0",
"react": "^18.1.0",
"react-dom": "^18.1.0"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^17.0.45",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"typescript": "^4.8.2"
}
}