-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 2.15 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
{
"name": "cmc_landing_page",
"version": "1.0.0",
"private": true,
"description": "cmc_landing_page",
"homepage": "https://central.makeus.in/ ",
"keywords": [
"gatsby"
],
"scripts": {
"lint:pt": "prettier --write \"${*}**/*.{ts,tsx,json}\"",
"lint:es": "eslint --ext .ts,.tsx,.js --fix .",
"lint": "yarn lint:pt && yarn lint:es",
"start": "gatsby develop",
"build": "gatsby build",
"deploy": "gatsby clean && gatsby build && cp CNAME public/ && gh-pages -d public",
"typecheck": "tsc --noEmit",
"prepare": "husky install"
},
"lint-staged": {
"*.json": [
"prettier --cache --write"
],
"*.{js,ts,tsx}": [
"eslint --fix",
"prettier --config .prettierrc --cache --write"
]
},
"dependencies": {
"clsx": "^2.0.0",
"gatsby": "^5.12.4",
"gatsby-plugin-advanced-sitemap": "^2.1.0",
"gatsby-plugin-gtag": "^1.0.13",
"gatsby-plugin-image": "^3.12.0",
"gatsby-plugin-manifest": "^5.12.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-robots-txt": "^1.8.0",
"gatsby-plugin-sass": "^6.12.0",
"gatsby-plugin-sharp": "^5.12.0",
"gatsby-source-filesystem": "^5.12.0",
"gatsby-transformer-json": "^5.12.0",
"gatsby-transformer-sharp": "^5.12.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"sass": "^1.67.0",
"svg-react-loader": "^0.4.6"
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/react-modal": "^3.16.1",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"eslint": "^8.49.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.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-plugin-simple-import-sort": "^10.0.0",
"gh-pages": "^6.0.0",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"packageManager": "[email protected]"
}