-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.94 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
{
"name": "@mycrypto/blog",
"version": "1.1.3",
"main": "index.js",
"author": "MyCrypto",
"license": "MIT",
"scripts": {
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"extract": "lingui extract",
"compile": "lingui compile",
"deploy": "gatsby-plugin-s3 deploy",
"lint": "yarn run lint:types && yarn run lint:source && yarn run lint:format",
"lint:types": "tsc --noEmit",
"lint:source": "eslint . --ignore-path .gitignore --ext .ts,.tsx,.js,.jsx,.mdx",
"lint:format": "prettier --check --ignore-path .gitignore \"**/*.{ts,tsx,js,json,yml,mdx}\"",
"format": "prettier --write --ignore-path .gitignore \"**/*.{ts,tsx,js,json,yml,mdx}\"",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@lingui/babel-preset-react": "^2.9.2",
"@lingui/cli": "^3.13.0",
"@types/lodash.merge": "^4.6.6",
"@types/lunr": "^2.3.4",
"@types/react-helmet": "^6.1.4",
"@types/styled-components": "^5.1.16",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.5.0",
"babel-preset-gatsby": "^2.3.0",
"dotenv": "^10.0.0",
"eslint": "^8.4.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"gatsby": "^4.3.0",
"gatsby-plugin-canonical-urls": "^4.3.0",
"gatsby-plugin-feed": "^4.3.0",
"gatsby-plugin-image": "^2.3.0",
"gatsby-plugin-local-search": "^2.0.1",
"gatsby-plugin-manifest": "^4.3.0",
"gatsby-plugin-matomo": "^0.11.0",
"gatsby-plugin-nprogress": "^4.3.0",
"gatsby-plugin-react-helmet": "^5.3.0",
"gatsby-plugin-s3": "^0.3.8",
"gatsby-plugin-sharp": "^4.3.0",
"gatsby-plugin-styled-components": "^5.3.0",
"gatsby-plugin-ts-config": "^2.1.3",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-source-ghost": "^4.2.4",
"gatsby-transformer-sharp": "^4.3.0",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"rehype-parse": "^7.0.1",
"rehype-stringify": "^8.0.0",
"simple-git-hooks": "^2.7.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"unified": "^9.2.2",
"unist-util-visit": "^2.0.3"
},
"dependencies": {
"@fontsource/lato": "^4.5.0",
"@lingui/core": "^3.13.0",
"@lingui/macro": "^3.13.0",
"@lingui/react": "^3.13.0",
"@mycrypto/ui": "^1.9.3",
"babel-runtime": "^6.26.0",
"lodash.merge": "^4.6.2",
"lunr": "^2.3.9",
"make-plural": "^7.0.0",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-is": "^17.0.2",
"styled-components": "^5.3.3"
},
"simple-git-hooks": {
"pre-commit": "yarn lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mdx}": [
"eslint --fix"
],
"*.{js,jsx,ts,tsx,json,md,mdx}": [
"prettier --write"
]
}
}