This repository has been archived by the owner on Feb 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
81 lines (81 loc) · 2.98 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
{
"name": "vshn-gatsby",
"private": true,
"version": "0.1.0",
"scripts": {
"start": "npm run develop:website",
"storybook": "npm run develop:storybook",
"develop:website": "gatsby develop -H 0.0.0.0",
"develop:storybook": "start-storybook -p 8001 -s static",
"build": "npm run build:website",
"build:website": "gatsby build",
"build:storybook": "build-storybook -o ./public/storybook -s static",
"serve": "gatsby serve",
"serve:storybook": "npx http-server ./public/storybook -p 8001",
"clean": "gatsby clean",
"lint": "npm run lint:js & npm run lint:styles & npm run lint:md",
"lint:fix": "npm run lint:js:fix & npm run lint:styles: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:styles": "stylelint --ignore-path .gitignore '{**/*,*}.{css,sass,scss,md,html}'",
"lint:styles:fix": "stylelint --fix --ignore-path .gitignore '{**/*,*}.{css,sass,scss,md,html}'"
},
"dependencies": {
"classnames": "^2.3.1",
"framer-motion": "^4.1.17",
"gatsby": "^4.11.1",
"gatsby-plugin-feed": "^4.10.0",
"gatsby-plugin-gatsby-cloud": "^4.11.1",
"gatsby-plugin-image": "^2.11.1",
"gatsby-source-wordpress": "^6.11.1",
"html-react-parser": "^1.4.2",
"lottie-web": "5.8.1",
"normalize.css": "^8.0.1",
"prop-types": "^15.8.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-intersection-observer": "^8.33.0",
"react-paginate": "^7.1.3",
"sass": "^1.45.0",
"swiper": "^7.3.2",
"typewriter-effect": "^2.18.2"
},
"devDependencies": {
"@commitlint/cli": "^13.2.0",
"@commitlint/config-conventional": "^13.2.0",
"@storybook/addon-actions": "^6.4.9",
"@storybook/addon-knobs": "^6.3.1",
"@storybook/react": "^6.4.9",
"@svgr/webpack": "^5.5.0",
"dotenv": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"gatsby-alias-imports": "^1.0.6",
"gatsby-plugin-google-tagmanager": "^4.10.0",
"gatsby-plugin-manifest": "^4.10.0",
"gatsby-plugin-react-helmet": "^5.10.0",
"gatsby-plugin-sass": "^5.11.1",
"gatsby-plugin-sharp": "^4.11.1",
"gatsby-plugin-sitemap": "^5.10.0",
"gatsby-plugin-svgr-svgo": "^2.0.0",
"gatsby-source-filesystem": "^4.11.1",
"gatsby-transformer-sharp": "^4.11.0",
"husky": "^7.0.3",
"lint-staged": "^11.1.2",
"markdownlint-cli": "^0.28.1",
"resolve-url-loader": "^4.0.0",
"slash": "^3.0.0",
"stylelint": "^13.13.1",
"stylelint-config-css-modules": "^2.3.0",
"stylelint-config-recess-order": "^2.5.0",
"stylelint-config-recommended-scss": "^4.3.0",
"stylelint-config-standard": "^22.0.0",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.21.0"
}
}