-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
139 lines (139 loc) · 4.33 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "janczizikow-portfolio",
"version": "1.0.0",
"repository": "github:janczizikow/janczizikow-portfolio",
"author": "Jan Czizikow <[email protected]>",
"license": "MIT",
"private": false,
"lint-staged": {
"src/**/*.{js,jsx,json}": [
"eslint --fix",
"prettier --config .prettierrc --write"
],
"src/**/*.{js,jsx}": [
"stylelint --config=.stylelintrc --fix",
"prettier --config .prettierrc --write"
]
},
"scripts": {
"clean": "gatsby clean",
"start": "yarn run dev",
"develop": "yarn run dev",
"dev": "gatsby develop",
"prebuild": "cd plugins/gatsby-source-strapi && npm i && npm run build",
"build": "gatsby build",
"serve": "gatsby serve",
"format": "prettier --write 'src/**/*.{js,jsx}'",
"lint:css": "stylelint --config=.stylelintrc 'src/**/*.{js, jsx}'",
"lint:js": "eslint --config=.eslintrc --fix 'src/**/*.{js,jsx}'",
"lint": "yarn lint:css && yarn lint:js",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@emotion/styled": "^10.0.27",
"@styled-system/prop-types": "^5.1.5",
"@styled-system/should-forward-prop": "^5.1.5",
"body-scroll-lock": "^3.1.5",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"facepaint": "^1.2.1",
"formik": "^2.2.5",
"gatsby": "^2.28.0",
"gatsby-image": "^2.7.0",
"gatsby-plugin-canonical-urls": "^2.6.0",
"gatsby-plugin-emotion": "^4.3.13",
"gatsby-plugin-favicon": "^3.1.6",
"gatsby-plugin-layout": "^1.6.0",
"gatsby-plugin-manifest": "^2.8.0",
"gatsby-plugin-netlify": "^2.7.0",
"gatsby-plugin-netlify-cache": "^1.2.0",
"gatsby-plugin-nprogress": "^2.6.0",
"gatsby-plugin-offline": "^3.6.0",
"gatsby-plugin-preact": "^4.3.0",
"gatsby-plugin-react-helmet": "^3.6.0",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-remove-serviceworker": "^1.0.0",
"gatsby-plugin-sharp": "^2.10.0",
"gatsby-plugin-sitemap": "^2.8.0",
"gatsby-plugin-typography": "^2.8.0",
"gatsby-plugin-webpack-bundle-analyzer": "^1.0.5",
"gatsby-source-filesystem": "^2.7.0",
"gatsby-transformer-sharp": "^2.8.0",
"preact": "^10.5.7",
"preact-render-to-string": "^5.1.12",
"prop-types": "^15.6.2",
"react": "16.13.1",
"react-anchor-link-smooth-scroll": "^1.0.12",
"react-dom": "16.13.1",
"react-headroom": "^3.1.0",
"react-helmet": "^6.1.0",
"react-icons": "^4.1.0",
"react-modal": "^3.12.1",
"react-pose": "^4.0.10",
"react-typography": "^0.16.19",
"styled-system": "^5.1.5",
"typography": "^0.16.19",
"typography-theme-bootstrap": "^0.16.19",
"yup": "^0.29.3"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-preset-gatsby": "^0.8.0",
"eslint": "7.11.0",
"eslint-config-airbnb": "18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-emotion": "^10.0.27",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.4",
"eslint-plugin-react-hooks": "^4.1.2",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-emotion": "^10.0.32",
"lint-staged": "^10.5.2",
"prettier": "^2.1.2",
"react-test-renderer": "^16.13.1",
"stylelint": "^11.1.1",
"stylelint-config-prettier": "^6.0.0",
"stylelint-config-recommended": "^3.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-processor-styled-components": "^1.8.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"transform": {
"^.+\\.jsx?$": "<rootDir>/jest-preprocess.js"
},
"testRegex": "/(.*(test|spec))\\.jsx?$",
"moduleNameMapper": {
".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy",
".+\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
},
"testPathIgnorePatterns": [
"node_modules",
".cache"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"globals": {
"__PATH_PREFIX__": ""
},
"snapshotSerializers": [
"jest-emotion/serializer"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
]
}
}