-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
99 lines (99 loc) · 2.89 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
{
"name": "@codewitchjosie/personalwebsite",
"description": "Personal website for Jocelyn Irwin",
"repository": {
"type": "git",
"url": "https://github.com/CodeWitchJosie/personalWebsite"
},
"version": "1.1.0",
"author": "Jocelyn Irwin <[email protected]>",
"license": "MIT",
"scripts": {
"develop": "gatsby develop",
"start": "gatsby develop",
"build": "gatsby build",
"serve": "gatsby serve",
"clean": "gatsby clean",
"cleanbuild": "gatsby clean; gatsby build",
"test": "jest"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@types/react-helmet": "^6.1.9",
"@types/react-scroll": "^1.8.10",
"babel-preset-gatsby": "^3.12.1",
"bootstrap": "^5.3.2",
"gatsby": "^5.13.3",
"gatsby-plugin-google-fonts": "^1.0.1",
"gatsby-plugin-google-gtag": "^5.13.1",
"gatsby-plugin-image": "^3.13.1",
"gatsby-plugin-manifest": "^5.12.3",
"gatsby-plugin-netlify": "^5.1.1",
"gatsby-plugin-offline": "^6.12.3",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-sass": "^6.12.3",
"gatsby-plugin-sharp": "^5.12.3",
"gatsby-plugin-typescript": "^5.12.1",
"gatsby-source-filesystem": "^5.12.1",
"gatsby-transformer-json": "^5.12.0",
"gatsby-transformer-remark": "^6.13.1",
"gatsby-transformer-sharp": "^5.12.3",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-bootstrap": "^2.9.1",
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-scroll": "^1.9.0",
"sass": "^1.69.5",
"typescript": "^5.2.2"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^6.4.2",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/micromatch": "^4.0.5",
"@types/react-dom": "^18.2.15",
"@types/react-test-renderer": "^18.0.6",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"markdownlint": "^0.32.1",
"prettier": "^3.0.3",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*\\.([tj]sx?)|(\\.|/)(test|spec))\\.([tj]sx?)$",
"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>/jest/__mocks__/fileMock.js"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"node_modules",
".cache"
],
"transformIgnorePatterns": [
"node_modules/(?!(gatsby)/)"
],
"globals": {
"__PATH_PREFIX__": ""
},
"setupFiles": [
"<rootDir>/jest/loadershim.js"
]
}
}