This repository has been archived by the owner on Jul 21, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
88 lines (88 loc) · 2.66 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
{
"name": "blog.sapegin.me",
"private": true,
"license": "See license in <Readme.md>",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"pretest": "npm run lint:js && npm run lint:md",
"test": "npm run typecheck",
"posttest": "npm run format",
"typecheck": "tsc",
"lint:md": "remark --quiet \"content/**/*.md\"",
"lint:js": "eslint . --cache --fix --ext .js,.ts,.tsx",
"format": "prettier --loglevel warn --write \"**/*.{js,ts,tsx,md}\"",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build",
"sync": "node scripts/sync-til.js; node scripts/sync-book.js",
"deploy": "npm run sync && npm run build",
"prepare": "husky install"
},
"engines": {
"node": ">=16"
},
"browserslist": [
">1%",
"last 1 version",
"Firefox ESR",
"not dead"
],
"dependencies": {
"just-group-by": "^1.1.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-group": "^3.0.2",
"react-helmet": "^6.1.0",
"romanize": "^1.1.1",
"styled-components": "^5.3.0",
"tamia": "^6.0.32",
"tamia-gatsby-link": "^1.0.6"
},
"devDependencies": {
"@types/react": "^17.0.14",
"@types/react-dom": "^17.0.9",
"@types/react-helmet": "^6.1.2",
"@types/styled-components": "^5.1.11",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.28.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"eslint": "^7.30.0",
"eslint-config-tamia": "^7.2.6",
"eslint-plugin-react": "^7.24.0",
"fs-extra": "^10.0.0",
"gatsby": "3.15",
"gatsby-plugin-canonical-urls": "^3.13",
"gatsby-plugin-feed": "^3.13",
"gatsby-plugin-goatcounter": "^0.4.0",
"gatsby-plugin-netlify": "^3.13",
"gatsby-plugin-react-helmet": "^4.9.0",
"gatsby-plugin-sitemap": "^4.5.0",
"gatsby-plugin-styled-components": "^4.9.0",
"gatsby-plugin-ts-config": "^1.1.5",
"gatsby-plugin-typescript": "^3.13",
"gatsby-remark-prismjs": "^5.6.0",
"gatsby-remark-twitter-cards": "^0.6.1",
"gatsby-source-filesystem": "^3.13",
"gatsby-transformer-json": "^3.15.0",
"gatsby-transformer-remark": "^4.6.1",
"glob": "^7.1.7",
"gray-matter": "^4.0.3",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"lodash": "^4.17.21",
"prettier": "^2.7.1",
"react-styleguidist": "^13.0.0",
"remark-cli": "^11.0.0",
"remark-lint": "^7.0.0",
"richtypo": "^4.1.1",
"richtypo-rules-en": "^4.0.7",
"typescript": "^4.3.5",
"unist-util-visit": "^2.0.3"
},
"lint-staged": {
"*.{js,ts,tsx,md}": "prettier --write",
"*.{js,ts,tsx}": "eslint --fix"
}
}