-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·104 lines (104 loc) · 3.56 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
{
"name": "@hkolsen/gatsby-portfolio-site",
"version": "1.0.0",
"private": true,
"description": "Static site for Heidi Olsen portfolio",
"scripts": {
"prebuild": "npm run clean && npm run type-check && npm run lint && npm run test",
"build": "gatsby build",
"clean": "rimraf .cache public",
"develop": "npm run clean && gatsby develop",
"format": "prettier --write '{gatsby-*.js,src/**/*.{md,json,ts,tsx},static/**/*.yml,*.{md,json}}'",
"gatsby-clean": "gatsby clean",
"gatsby-info": "gatsby info --clipboard",
"lint": "eslint --ext ts,tsx src/",
"lint:watch": "eslint --ext ts,tsx src/ --watch",
"serve": "gatsby serve",
"start": "npm run develop",
"test": "jest --passWithNoTests",
"type-check": "tsc --noEmit"
},
"prettier": "prettier.js",
"eslintConfig": {
"extends": "eslint.js",
"rules": {}
},
"eslintIgnore": [
"node_modules",
"output",
"translationTemplates",
"__generated__",
"__snapshots__",
"dist",
"build",
"bundle"
],
"dependencies": {
"gatsby": "^4.5.4",
"gatsby-image": "^3.11.0",
"gatsby-plugin-image": "^2.5.2",
"gatsby-plugin-module-resolver": "^1.0.3",
"gatsby-plugin-netlify": "^4.0.0",
"gatsby-plugin-netlify-cms": "^6.5.0",
"gatsby-plugin-react-helmet": "^5.5.0",
"gatsby-plugin-react-svg": "^3.1.0",
"gatsby-plugin-sharp": "^4.5.2",
"gatsby-plugin-styled-components": "^5.5.0",
"gatsby-plugin-typescript": "^4.5.2",
"gatsby-remark-copy-linked-files": "^5.5.0",
"gatsby-remark-images": "^6.5.2",
"gatsby-remark-relative-images": "^2.0.2",
"gatsby-source-filesystem": "^4.5.2",
"gatsby-transformer-remark": "^5.5.2",
"gatsby-transformer-sharp": "^4.5.0",
"intersection-observer": "^0.12.0",
"lodash": "^4.17.21",
"lodash-webpack-plugin": "^0.11.6",
"netlify-cms-app": "^2.15.62",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-icon-base": "^2.1.2",
"react-icons": "^4.3.1",
"react-is": "^17.0.2",
"sharp": "^0.29.3",
"showdown": "^1.9.1",
"styled-components": "^5.3.3",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@types/escape-string-regexp": "^2.0.1",
"@types/graphql": "^14.5.0",
"@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.10",
"@types/prettier": "^2.4.3",
"@types/prop-types": "^15.7.4",
"@types/qs": "^6.9.7",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-helmet": "^6.1.5",
"@types/react-icon-base": "^2.1.4",
"@types/react-is": "^17.0.3",
"@types/showdown": "^1.9.4",
"@types/styled-components": "^5.1.20",
"@typescript-eslint/parser": "^5.10.0",
"eslint": "^8.7.0",
"graphql": "^16.2.0",
"jest": "^27.4.7",
"polished": "^4.1.3",
"prettier": "^2.5.1",
"react-testing-library": "^8.0.1",
"rimraf": "^3.0.2",
"typescript": "^4.0.5"
},
"resolutions": {
"@types/node": "^16.11.6",
"eslint": "^7.32.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2"
}
}