-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 3.07 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
{
"name": "engarcia",
"private": true,
"version": "1.28.0",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"build": "gatsby build",
"build:clean": "yarn clean && gatsby build",
"build:prod": "gatsby build --prefix-paths",
"clean": "gatsby clean",
"deploy": "gatsby build --prefix-paths && gh-pages -d public -b master -m \"Auto-generated commit from manual deploy\"",
"dev": "gatsby develop -H 0.0.0.0",
"dev:clean": "gatsby clean && gatsby develop -H 0.0.0.0",
"dev:reset": "yarn clean && rm -rf node_modules yarn.lock && yarn && yarn test && yarn dev",
"format": "prettier --check \"src/**/*.{scss,css,js,jsx,md,mdx}\"",
"format:fix": "prettier --write \"src/**/*.{scss,css,js,jsx,md,mdx}\"",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install",
"serve": "gatsby serve",
"start": "yarn dev",
"test": "yarn format && yarn lint"
},
"dependencies": {
"@carbon/react": "^1.39.0",
"@carbon/styles": "^1.39.0",
"gatsby": "^4.25.8",
"gatsby-plugin-advanced-sitemap": "^2.1.0",
"gatsby-plugin-image": "^2.25.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-offline": "^5.25.0",
"gatsby-plugin-sharp": "^4.25.1",
"gatsby-remark-copy-linked-files": "5.25.0",
"gatsby-remark-images": "^6.25.0",
"gatsby-source-filesystem": "^4.25.0",
"gatsby-theme-carbon": "^4.0.0-next.2",
"gatsby-transformer-remark": "^5.25.1",
"gatsby-transformer-sharp": "^4.25.0",
"lmdb": "^2.8.5",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"styled-components": "^6.0.8"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/eslint-parser": "^7.22.15",
"@babel/eslint-plugin": "^7.22.10",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@eng618/prettier-config": "^1.7.2",
"@types/react": "^18.2.73",
"babel-loader": "^9.1.3",
"eslint": "^8.50.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"gatsby-plugin-eslint": "^4.0.4",
"gh-pages": "^6.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2",
"webpack": "^5.90.1"
},
"resolutions": {
"ansi-html": "^0.0.8",
"cross-fetch": "^3.1.5",
"gatsby-transformer-remark@npm:5.25.1/sanitize-html": "^2.7.1",
"glob-parent": "^6.0.1",
"got": "^11.8.5",
"node-fetch": "^2.6.7",
"nth-check": "^2.0.1",
"optionator@npm:0.9.1/word-wrap": "^1.2.5",
"resolve-url-loader@npm:3.1.4/loader-utils": "^1.4.1",
"trim": "^0.0.3",
"ws": "^7.4.6"
},
"lint-staged": {
"src/**/*.(js|ts)?(x)": "eslint . --fix",
"*.(js|md|ts)?(x)": "prettier --write",
"*.(scss|css|json)": "prettier --write"
},
"prettier": "@eng618/prettier-config"
}