This repository was archived by the owner on Aug 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.44 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.44 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
{
"name": "adoptopenjdk_website_next",
"repository": "https://github.com/AdoptOpenJDK/openjdk-website-next",
"private": true,
"version": "2.0.0",
"license": "Apache-2.0",
"scripts": {
"build": "gatsby build",
"deploy": "npm run build && gh-pages -d public",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"start": "gatsby develop",
"serve": "gatsby serve",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\""
},
"author": "Joe Brady",
"dependencies": {
"@emotion/core": "^10.0.14",
"@uifabric/fluent-theme": "^0.16.7",
"gatsby": "^2.4.0",
"gatsby-plugin-client-side-redirect": "0.0.2",
"gatsby-plugin-react-helmet": "^3.0.12",
"gatsby-plugin-sass": "^2.0.11",
"gatsby-remark-attr": "0.0.2",
"gatsby-remark-autolink-headers": "^2.1.1",
"gatsby-source-filesystem": "^2.1.5",
"gatsby-transformer-remark": "^2.6.3",
"graphql": "^14.3.1",
"node-sass": "^4.12.0",
"office-ui-fabric-react": "^6.176.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-helmet": "^5.2.1",
"typescript": "^3.5.1"
},
"devDependencies": {
"@types/react-dom": "^16.8.4",
"@types/react-helmet": "^5.0.8",
"gatsby-plugin-typescript": "^2.0.13",
"gh-pages": "^2.0.1",
"husky": "^3.0.0",
"prettier": "^1.17.0",
"pretty-quick": "^1.11.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"prettier": {}
}