-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.51 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
92
93
94
95
96
97
98
99
100
101
102
{
"name": "eyespot-starter-gatsby",
"private": true,
"version": "0.8.0",
"description": "Eyespot Gatsby starter with essential Eyespot conventions and React/JavaScript standards",
"repository": {
"type": "git",
"url": "git@github.com:eyespot-agency/eyespot-starter-gatsby.git"
},
"author": "EMIKETIC Technologies <contact@emiketic.com>",
"license": "MIT",
"homepage": "https://www.eyespot.agency",
"keywords": [
"gatsby",
"react",
"gatsby starter",
"eyespot"
],
"bugs": {
"url": "https://github.com/eyespot-agency/eyespot-starter-gatsby/issues",
"email": "contact@emiketic.com"
},
"scripts": {
"postinstall": "husky install",
"start": "gatsby develop",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"build": "gatsby build",
"clean": "gatsby clean",
"serve": "gatsby build && gatsby serve",
"lint:check": "eslint --ext .js ./",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint:fix": "eslint --ext .js ./ --fix",
"format:fix": "prettier --write \"**/*.{js,jsx,ts,tsx,json,md}\"",
"release": "standard-version",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"release:dry": "standard-version --dry-run",
"storybook": "NODE_ENV=production STORYBOOK=enabled start-storybook -s public -p 6006",
"build:storybook": "NODE_ENV=production build-storybook -s public"
},
"dependencies": {
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"axios": "^0.21.1",
"gatsby": "^3.3.1",
"gatsby-omni-font-loader": "^1.3.3",
"gatsby-plugin-advanced-sitemap": "^2.0.0",
"gatsby-plugin-google-analytics": "^3.7.1",
"gatsby-plugin-htaccess": "^1.4.0",
"gatsby-plugin-image": "^1.6.0",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-mdx": "^2.5.1",
"gatsby-plugin-offline": "^4.2.0",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-react-i18next": "^1.1.1",
"gatsby-plugin-sass": "^4.7.1",
"gatsby-plugin-sharp": "^3.6.0",
"gatsby-source-filesystem": "^3.6.0",
"gatsby-transformer-sharp": "^3.6.0",
"i18next": "^20.4.0",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-grid-system": "^7.1.2",
"react-helmet": "^6.1.0",
"react-i18next": "^11.11.4",
"sass": "^1.32.13"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/eslint-parser": "^7.14.4",
"@babel/preset-react": "^7.13.13",
"@commitlint/cli": "^12.1.3",
"@commitlint/config-conventional": "^12.1.3",
"@storybook/addon-actions": "^6.4.21",
"@storybook/addon-essentials": "^6.4.21",
"@storybook/addon-links": "^6.4.21",
"@storybook/builder-webpack5": "^6.4.21",
"@storybook/manager-webpack5": "^6.4.21",
"@storybook/preset-scss": "^1.0.3",
"@storybook/react": "^6.4.21",
"babel-loader": "^8.2.2",
"babel-plugin-remove-graphql-queries": "^3.6.0",
"eslint": "^7.28.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-react-app": "^6.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-mdx": "^1.13.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-storybook": "^0.5.8",
"husky": "^6.0.0",
"hygen-emiketic-react": "^1.3.1",
"prettier": "^2.1.2",
"standard-version": "^9.3.0"
},
"resolutions": {
"webpack": "^5.72.0"
}
}