forked from beefyfinance/beefy-dot-com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.39 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
{
"name": "beefy-finance",
"version": "1.0.0",
"private": true,
"description": "beefy-finance",
"keywords": [
"gatsby"
],
"scripts": {
"prepare": "husky install",
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"typecheck": "tsc --noEmit",
"prettier:check": "prettier --check src/**/*.{ts,tsx,json}",
"prettier:fix": "prettier --write src/**/*.{ts,tsx,json}",
"migrate": "node --es-module-specifier-resolution=node --loader ts-node/esm scripts/migrate.ts"
},
"dependencies": {
"@emotion/react": "^11.9.3",
"@emotion/styled": "^11.9.3",
"@fontsource/dm-sans": "^4.5.7",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reduxjs/toolkit": "^1.8.3",
"@reflectivechimp/gatsby-remark-normalize-paths": "^1.1.3",
"@types/react-helmet": "^6.1.5",
"gatsby": "^4.18.2",
"gatsby-plugin-emotion": "^7.18.0",
"gatsby-plugin-image": "^2.18.1",
"gatsby-plugin-manifest": "^4.18.1",
"gatsby-plugin-react-helmet": "^5.18.0",
"gatsby-plugin-sharp": "^4.18.1",
"gatsby-plugin-sitemap": "^5.18.1",
"gatsby-remark-images": "^6.18.1",
"gatsby-source-filesystem": "^4.18.1",
"gatsby-transformer-json": "^4.18.0",
"gatsby-transformer-remark": "^5.18.1",
"gatsby-transformer-sharp": "^4.18.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.7",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-page-visibility": "^7.0.0",
"react-redux": "^8.0.2",
"react-ticker": "^1.3.2",
"slugify": "^1.6.5"
},
"devDependencies": {
"@types/gatsby-transformer-remark": "^2.9.1",
"@types/node": "^17.0.45",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"@types/react-page-visibility": "^6.4.1",
"@types/webpack-env": "^1.17.0",
"escape-string-regexp": "^5.0.0",
"fast-glob": "^3.2.11",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"p-limit": "^4.0.0",
"prettier": "^2.7.1",
"toml": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"lint-staged": {
"./src/**/*.{ts,tsx,json}": "prettier --write",
"./plugins/**/*.{ts,tsx,json}": "prettier --write",
"./gatsby-{node,config,browser}.ts": "prettier --write"
}
}