forked from layer5io/layer5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.31 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
{
"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"
},
"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": "^6.8.0",
"gatsby": "^2.24.78",
"gatsby-awesome-pagination": "^0.3.6",
"gatsby-image": "^2.2.34",
"gatsby-plugin-anchor-links": "^1.1.0",
"gatsby-plugin-google-gtag": "^2.7.0",
"gatsby-plugin-manifest": "^2.2.30",
"gatsby-plugin-mdx": "^1.2.27",
"gatsby-plugin-meta-redirect": "^1.1.1",
"gatsby-plugin-preload-fonts": "^1.2.29",
"gatsby-plugin-react-helmet": "^3.1.16",
"gatsby-plugin-sharp": "^2.6.40",
"gatsby-plugin-sitemap": "^2.4.11",
"gatsby-plugin-styled-components": "^3.1.19",
"gatsby-redirect-from": "^0.2.4",
"gatsby-source-filesystem": "^2.1.39",
"gatsby-transformer-sharp": "^2.3.6",
"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": "^3.11.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",
"slick-carousel": "^1.8.1",
"styled-components": "^4.4.1",
"swiper": "^6.3.5"
},
"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"
]
}
}