-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
66 lines (66 loc) · 2.17 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
{
"name": "parca-gatsby",
"version": "0.1.0",
"scripts": {
"start": "npm run develop",
"develop": "gatsby develop -H 0.0.0.0",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"format": "prettier --write --ignore-path .gitignore .",
"lint": "npm run lint:js & npm run lint:md",
"lint:fix": "npm run lint:js:fix & npm run lint:md:fix",
"lint:js": "eslint --ext .js,.jsx --ignore-path .gitignore .",
"lint:js:fix": "eslint --fix --ext .js,.jsx --ignore-path .gitignore .",
"lint:md": "markdownlint --ignore-path .gitignore .",
"lint:md:fix": "markdownlint --fix --ignore-path .gitignore .",
"prepare": "husky install"
},
"dependencies": {
"@react-hook/size": "2.1.2",
"clsx": "1.2.1",
"framer-motion": "6.5.1",
"gatsby": "5.14.0",
"gatsby-plugin-image": "3.14.0",
"gatsby-plugin-netlify": "5.1.1",
"prop-types": "15.8.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-helmet": "6.1.0",
"react-intersection-observer": "8.34.0",
"rive-react": "3.0.57",
"tailwindcss": "3.4.16"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@commitlint/cli": "16.3.0",
"@commitlint/config-conventional": "16.2.4",
"@svgr/webpack": "6.5.1",
"autoprefixer": "10.4.20",
"babel-loader": "8.4.1",
"eslint": "8.57.1",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.10.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "4.6.2",
"gatsby-alias-imports": "1.0.6",
"gatsby-plugin-manifest": "5.14.0",
"gatsby-plugin-postcss": "6.14.0",
"gatsby-plugin-react-helmet": "6.14.0",
"gatsby-plugin-sharp": "5.14.0",
"gatsby-plugin-sitemap": "6.14.0",
"gatsby-plugin-svgr-svgo": "2.0.0",
"gatsby-source-filesystem": "5.14.0",
"gatsby-transformer-sharp": "5.14.0",
"husky": "7.0.4",
"lint-staged": "12.5.0",
"markdownlint-cli": "0.41.0",
"postcss": "8.4.49",
"postcss-import": "14.1.0",
"prettier": "2.8.8",
"prettier-plugin-tailwindcss": "0.6.9",
"tailwindcss-safe-area": "0.6.0"
}
}