-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
74 lines (74 loc) · 2.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
{
"name": "gatsby-starter-scientist",
"private": false,
"description": "A starter template for scientists",
"version": "0.1.0",
"author": "James Knight <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@reach/router": "^1.3.4",
"gatsby": "^5.3.3",
"gatsby-background-image": "^1.6.0",
"gatsby-plugin-image": "^3.3.2",
"gatsby-plugin-manifest": "^5.3.1",
"gatsby-plugin-offline": "^6.3.1",
"gatsby-plugin-react-helmet": "^6.3.0",
"gatsby-plugin-react-svg": "^3.3.0",
"gatsby-plugin-sharp": "^5.3.2",
"gatsby-plugin-sitemap": "^6.3.1",
"gatsby-plugin-styled-components": "^6.3.0",
"gatsby-plugin-use-dark-mode": "^2.0.0",
"gatsby-source-filesystem": "^5.3.1",
"gatsby-transformer-remark": "^6.3.2",
"gatsby-transformer-sharp": "^5.3.1",
"gaxios": "^5.0.2",
"gbimage-bridge": "^0.2.2",
"postcss": "^8.4.20",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"styled-components": "^5.3.6",
"typeface-quicksand": "^1.1.13",
"typeface-source-sans-pro": "^1.1.13",
"use-dark-mode": "github:knightjdr/use-dark-mode#develop"
},
"devDependencies": {
"@babel/core": "^7.20.7",
"@babel/plugin-proposal-optional-chaining": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"babel-jest": "^29.3.1",
"eslint": "^8.30.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"gh-pages": "^4.0.0",
"jest": "^29.3.1",
"prettier": "^2.8.1"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "npm run clean && gatsby build --prefix-paths",
"deploy": "gh-pages -d public",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "jest --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/knightjdr/gatsby-starter-scientist"
},
"bugs": {
"url": "https://github.com/knightjdr/gatsby-starter-scientist/issues"
}
}