forked from layer5io/layer5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.5 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.5 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
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": "Layer5",
"description": "Making service meshes available to the rest of us. Open source software for management of service meshes. Allowing developers to focus on business logic, not infrastructure concerns. Empowering operators to confidentally run modern infrastructure.",
"version": "1.0.0",
"private": true,
"author": "Layer5 Authors",
"license": "",
"repository": {
"type": "git",
"url": "https://layer5.io"
},
"scripts": {
"build": "gatsby build",
"clean": "gatsby clean && rimraf node_modules",
"develop": "env-cmd -f .env.development gatsby develop",
"dev": "npm run develop",
"start": "npm run develop",
"serve": "gatsby serve",
"lint": "eslint --fix .",
"pretest": "eslint --ignore-path .gitignore .",
"preload-fonts": "gatsby-preload-fonts",
"deploy": "gatsby build && gh-pages -d public -b master",
"noIndex": "gatsby build && echo 'User-agent: *\nDisallow: /' > public/robots.txt"
},
"dependencies": {
"@fullcalendar/daygrid": "^5.5.0",
"@fullcalendar/google-calendar": "^5.5.0",
"@fullcalendar/interaction": "^5.5.0",
"@fullcalendar/react": "^5.5.0",
"@mdx-js/mdx": "^1.6.11",
"@mdx-js/react": "^1.6.11",
"axios": "^0.21.1",
"babel-plugin-styled-components": "^1.10.7",
"dedent": "^0.7.0",
"eslint": "^7.23.0",
"gatsby": "^3.2.1",
"gatsby-awesome-pagination": "^0.3.8",
"gatsby-cli": "^3.3.0",
"gatsby-plugin-anchor-links": "^1.1.0",
"gatsby-plugin-feed-mdx": "^1.1.0",
"gatsby-plugin-google-gtag": "^3.2.0",
"gatsby-plugin-image": "^1.3.0",
"gatsby-plugin-manifest": "^3.2.0",
"gatsby-plugin-mdx": "^2.2.0",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-preload-fonts": "^2.2.0",
"gatsby-plugin-react-helmet": "^4.2.0",
"gatsby-plugin-sharp": "^3.2.0",
"gatsby-plugin-sitemap": "^3.2.0",
"gatsby-plugin-styled-components": "^4.2.0",
"gatsby-redirect-from": "^0.3.0",
"gatsby-source-filesystem": "^3.2.0",
"gatsby-transformer-sharp": "^3.2.0",
"lodash": "^4.17.20",
"nuka-carousel": "^4.7.1",
"prism-react-renderer": "^1.1.1",
"prop-types": "^15.7.2",
"react": "^16.13.0",
"react-accessible-accordion": "^3.3.3",
"react-countup": "^4.2.3",
"react-dom": "^16.13.0",
"react-helmet": "^5.2.1",
"react-icons": "^4.2.0",
"react-intersection-observer": "^8.29.0",
"react-loadable": "^5.5.0",
"react-modal": "^3.12.1",
"react-particles-js": "^2.7.1",
"react-scroll": "^1.7.16",
"react-select": "^3.1.0",
"react-slick": "^0.27.13",
"react-table": "^7.6.2",
"react-tabs": "^3.1.1",
"react-tooltip": "^4.2.9",
"react-twitter-embed": "^3.0.3",
"react-vertical-timeline-component": "^3.3.0",
"react-visibility-sensor": "^5.1.1",
"simple-react-lightbox": "^3.6.5",
"slick-carousel": "^1.8.1",
"styled-components": "^4.4.1",
"swiper": "^6.5.4"
},
"peerDependencies": {
"styled-components": "^4.4.1"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"babel-eslint": "^10.1.0",
"babel-plugin-module-resolver": "^3.2.0",
"cpx": "^1.5.0",
"cross-env": "^7.0.0",
"env-cmd": "^10.1.0",
"gh-pages": "^3.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.5.0",
"rimraf": "^3.0.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"npm run lint"
]
}
}