This repository has been archived by the owner on May 25, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.95 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
{
"name": "gatsby-starter-oddcamp",
"private": true,
"description": "A simple starter to get up and developing quickly with GatsbyJS",
"version": "1.0.0",
"author": "Odd Camp <[email protected]>",
"license": "MIT",
"scripts": {
"build": "gatsby build",
"start": "gatsby develop",
"clean": "gatsby clean",
"develop": "gatsby develop",
"develop-n": "gatsby develop -H 0.0.0.0",
"serve": "gatsby serve",
"serve-n": "gatsby serve -H 0.0.0.0",
"lint-js": "eslint ./src --ext js,jsx",
"format-js": "eslint ./src --ext js,jsx --fix",
"lint-scss": "stylelint ./**/*.scss",
"format-scss": "stylelint ./**/*.scss --fix",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"dependencies": {
"@babel/eslint-parser": "^7.16.3",
"@babel/eslint-plugin": "^7.14.5",
"@oddcamp/js-utils": "^1.1.4",
"@oddcamp/sass-utils": "^1.2.2",
"@svgr/webpack": "^5.5.0",
"babel-plugin-styled-components": "^2.0.2",
"babel-preset-gatsby-package": "^2.3.0",
"common-tags": "^1.8.2",
"element-closest": "^3.0.2",
"filter-invalid-dom-props": "^2.1.0",
"formik": "^2.2.9",
"gatsby": "^4.3.0",
"gatsby-plugin-env-variables": "^2.2.0",
"gatsby-plugin-eslint": "^4.0.2",
"gatsby-plugin-image": "^2.3.0",
"gatsby-plugin-manifest": "^4.3.0",
"gatsby-plugin-react-helmet": "^5.3.0",
"gatsby-plugin-robots-txt": "^1.6.14",
"gatsby-plugin-sass": "^5.3.0",
"gatsby-plugin-sharp": "^4.3.0",
"gatsby-plugin-sitemap": "^5.3.0",
"gatsby-plugin-styled-components": "^5.3.0",
"gatsby-plugin-svgr": "3.0.0-beta.0",
"gatsby-source-filesystem": "^4.3.0",
"gatsby-transformer-sharp": "^4.3.0",
"he": "^1.2.0",
"lodash": "^4.17.21",
"nanoid": "^3.1.31",
"node-sass": "^6.0.1",
"polished": "^4.1.3",
"prop-types": "^15.7.2",
"pure-react-carousel": "^1.27.8",
"react": "17.0.2",
"react-cookie": "^4.1.1",
"react-dom": "17.0.2",
"react-helmet": "^6.1.0",
"react-modal": "^3.14.4",
"react-remove-scroll": "^2.4.3",
"sass-extract": "^2.1.0",
"sass-extract-js": "^0.4.0",
"sass-extract-loader": "^1.1.0",
"styled-components": "^5.3.3",
"truncate-html": "^1.0.4",
"webpack": "^5.64.4",
"yup": "^0.32.11"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.3.0",
"eslint-loader": "^4.0.2",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-flowtype": "^5.9.2",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-webpack-plugin": "^3.1.1",
"prettier": "^2.5.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^6.0.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-prettier": "^2.0.0",
"stylelint-webpack-plugin": "^3.1.0"
}
}