-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.76 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.76 KB
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
{
"name": "@morgan-stanley/makerspace",
"description": "Makerspace Tech Education Site",
"version": "0.2.0",
"engines": {
"node": "^22.13.0",
"npm": "^11.0.0"
},
"dependencies": {
"@mdx-js/react": "^2.3.0",
"dracula-prism": "^2.1.16",
"gatsby": "^5.15.0",
"gatsby-plugin-catch-links": "^5.14.0",
"gatsby-plugin-image": "^3.14.0",
"gatsby-plugin-manifest": "^5.14.0",
"gatsby-plugin-mdx": "^5.14.1",
"gatsby-plugin-sharp": "^5.14.0",
"gatsby-plugin-sitemap": "^6.14.0",
"gatsby-plugin-webfonts": "^2.3.2",
"gatsby-remark-autolink-headers": "^6.14.0",
"gatsby-remark-copy-linked-files": "^6.14.0",
"gatsby-remark-images": "^7.14.0",
"gatsby-remark-prismjs": "^7.14.0",
"gatsby-remark-smartypants": "^6.14.0",
"gatsby-source-filesystem": "^5.14.0",
"gatsby-transformer-sharp": "^5.14.0",
"prismjs": "^1.30.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"style-to-object": "^1.0.12"
},
"overrides": {
"axios": "^1.7.4",
"webpack-dev-middleware": "^5.3.4"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"scripts": {
"build": "gatsby clean && gatsby build --prefix-paths && npm run pub",
"develop": "gatsby clean && gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest",
"pub": "rimraf ../docs && mv public ../docs"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"babel-jest": "^29.7.0",
"babel-preset-gatsby": "^3.13.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1"
}
}