-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
78 lines (78 loc) · 2.19 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
{
"name": "sandbox-home-website",
"private": true,
"description": "The website for Sandbox at Northeastern University",
"version": "0.1.0",
"author": "Sandbox <[email protected]>",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.35",
"@fortawesome/free-brands-svg-icons": "^5.15.3",
"@fortawesome/free-solid-svg-icons": "^5.15.3",
"@fortawesome/react-fontawesome": "^0.1.14",
"@notionhq/client": "^2.2.3",
"amplitude-js": "^8.0.0",
"babel-plugin-styled-components": "^1.12.0",
"gatsby": "^3.1.0",
"gatsby-background-image": "^1.5.0",
"gatsby-plugin-google-analytics": "^3.1.0",
"gatsby-plugin-image": "^1.1.0",
"gatsby-plugin-mailchimp": "^5.2.2",
"gatsby-plugin-manifest": "^3.1.0",
"gatsby-plugin-offline": "^4.1.0",
"gatsby-plugin-react-helmet": "^4.1.0",
"gatsby-plugin-sharp": "^3.1.0",
"gatsby-plugin-styled-components": "^4.1.0",
"gatsby-source-filesystem": "^3.1.0",
"gatsby-transformer-json": "^3.1.0",
"gatsby-transformer-remark": "^3.1.0",
"gatsby-transformer-sharp": "^3.1.0",
"gbimage-bridge": "^0.1.1",
"prop-types": "^15.7.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"styled-components": "^5.2.1",
"styled-normalize": "^8.0.7"
},
"devDependencies": {
"husky": "^5.1.3",
"lint-staged": ">=10",
"prettier": "^2.2.1"
},
"engines": {
"node": "18.x"
},
"keywords": [
"gatsby"
],
"license": "MIT",
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"clean": "gatsby clean",
"format": "prettier --write src/**/*.{js,jsx}",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\"",
"now-build": "npm run build",
"team-scrape": "python3 src/utils/teamScraper.py"
},
"repository": {
"type": "git",
"url": "https://github.com/gatsbyjs/gatsby-starter-default"
},
"bugs": {
"url": "https://github.com/gatsbyjs/gatsby/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"git add"
]
}
}