-
Notifications
You must be signed in to change notification settings - Fork 132
/
package.json
107 lines (107 loc) · 3.28 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
100
101
102
103
104
105
106
107
{
"name": "hpe-dev-portal",
"description": "HPE Development Portal",
"version": "0.1.0",
"author": "Mike Kingdom",
"bugs": {
"url": "https://github.com/hpe-dev-incubator/hpe-dev-portal/issues"
},
"dependencies": {
"@babel/core": "^7.23.5",
"@emotion/core": "^11.0.0",
"@ion-phaser/react": "^1.3.0",
"@sendgrid/mail": "^8.0.0",
"axios": "^1.6.2",
"babel-plugin-styled-components": "^2.1.4",
"dotenv": "^16.3.1",
"formik": "^2.4.5",
"gatsby": "5.12.11",
"gatsby-cli": "^5.12.4",
"gatsby-image": "^3.11.0",
"gatsby-legacy-polyfills": "^3.12.0",
"gatsby-plugin-catch-links": "^5.12.0",
"gatsby-plugin-feed": "^5.12.3",
"gatsby-plugin-google-analytics": "^5.12.0",
"gatsby-plugin-google-gtag": "5.12.3",
"gatsby-plugin-lunr": "^1.5.2",
"gatsby-plugin-manifest": "5.12.3",
"gatsby-plugin-netlify-cms": "^7.12.0",
"gatsby-plugin-nprogress": "5.12.0",
"gatsby-plugin-paginated-collection": "^0.2.3",
"gatsby-plugin-react-helmet": "^6.12.0",
"gatsby-plugin-sharp": "5.12.3",
"gatsby-plugin-styled-components": "^6.12.0",
"gatsby-remark-copy-linked-files": "^6.12.0",
"gatsby-remark-images": "^7.12.3",
"gatsby-remark-prismjs": "^7.12.0",
"gatsby-remark-responsive-iframe": "^6.12.0",
"gatsby-remark-smartypants": "^6.12.0",
"gatsby-source-filesystem": "^5.12.1",
"gatsby-transformer-remark": "4.12.0",
"gatsby-transformer-sharp": "5.12.3",
"grommet": "2.31.0",
"grommet-icons": "^4.11.0",
"grommet-theme-hpe": "2.0.2",
"jest-styled-components": "^7.2.0",
"markdown-to-jsx": "7.1.8",
"netlify-cms-app": "^2.15.72",
"netlify-cms-media-library-cloudinary": "^1.3.10",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet": "^6.1.0",
"react-player": "^2.13.0",
"react-syntax-highlighter": "^15.5.0",
"redux": "^5.0.0",
"remark": "14.0.3",
"sanitize-html": "^2.13.0",
"strip-markdown": "^6.0.0",
"styled-components": "5.3.11",
"sweetalert2": "^11.10.1",
"typescript": "^5.3.2",
"yup": "^1.3.2"
},
"devDependencies": {
"@hpe/project-scripts": "^1.1.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.7.0",
"babel-preset-gatsby": "^3.12.1",
"eslint": "^8.55.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"react-test-renderer": "^18.2.0"
},
"homepage": "https://github.com/hpe-dev-incubator/hpe-dev-portal/blob/master/README.md",
"keywords": [
"gatsby"
],
"license": "MIT",
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/hpe-dev-incubator/hpe-dev-portal.git"
},
"scripts": {
"build": "gatsby build",
"develop": "gatsby develop",
"format": "prettier --write \"src/**/*.{js,jsx}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"test": "jest",
"validate": "yarn format && yarn eslint ./"
},
"husky": {
"hooks": {
"pre-commit": "yarn validate"
}
}
}