forked from mongodb/snooty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.07 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
{
"name": "snooty",
"version": "0.9.0",
"repository": "github:mongodb/snooty",
"devDependencies": {
"@babel/core": "^7.12.9",
"auto-changelog": "^2.2.1",
"babel-jest": "^26.6.3",
"babel-plugin-emotion": "^10.0.33",
"babel-preset-gatsby": "^0.5.16",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.5",
"enzyme-to-json": "^3.6.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"husky": "^4.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^26.6.3",
"jest-emotion": "^10.0.27",
"lint-staged": "^10.5.2",
"prettier": "^1.19.1"
},
"scripts": {
"build": "gatsby build --prefix-paths",
"clean": "gatsby clean",
"develop": "gatsby develop",
"ensure-master": "node scripts/ensure-master.js",
"format": "npm run prettier -- --check",
"format:fix": "npm run prettier -- --write",
"lint": "eslint --ext .js,.jsx .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier \"**/*.{js,jsx,json,md}\"",
"serve": "gatsby serve --prefix-paths",
"test": "jest",
"test:unit": "jest unit",
"preversion": "npm run ensure-master && npm run format && npm run lint && npm run test",
"version": "auto-changelog -p --template keepachangelog && git add CHANGELOG.md",
"postversion": "git push origin v$npm_package_version && git push origin master"
},
"lint-staged": {
"*.js": [
"npm run format:fix",
"npm run lint:fix"
]
},
"dependencies": {
"@emotion/core": "^10.1.1",
"@emotion/styled": "^10.0.27",
"@leafygreen-ui/badge": "^4.0.2",
"@leafygreen-ui/box": "^3.0.2",
"@leafygreen-ui/button": "^8.0.1",
"@leafygreen-ui/callout": "^2.0.2",
"@leafygreen-ui/card": "^5.0.2",
"@leafygreen-ui/checkbox": "^6.0.2",
"@leafygreen-ui/code": "^7.3.0",
"@leafygreen-ui/emotion": "^3.0.1",
"@leafygreen-ui/hooks": "^5.0.1",
"@leafygreen-ui/icon": "^7.0.2",
"@leafygreen-ui/icon-button": "^9.1.0",
"@leafygreen-ui/leafygreen-provider": "^2.0.2",
"@leafygreen-ui/modal": "^5.1.0",
"@leafygreen-ui/palette": "^3.1.0",
"@leafygreen-ui/tabs": "^4.0.5",
"@leafygreen-ui/text-input": "^4.2.0",
"@leafygreen-ui/tooltip": "^6.1.1",
"@leafygreen-ui/typography": "^7.1.1",
"@loadable/component": "^5.14.1",
"dotenv": "^8.2.0",
"emotion-theming": "^10.0.27",
"gatsby": "^2.29.3",
"gatsby-plugin-canonical-urls": "^2.9.0",
"gatsby-plugin-emotion": "^4.5.0",
"gatsby-plugin-google-tagmanager": "^2.8.0",
"gatsby-plugin-layout": "^1.7.0",
"gatsby-plugin-react-helmet": "^3.7.0",
"gatsby-plugin-sitemap": "^2.11.0",
"html-screen-capture-js": "^1.0.50",
"mongodb-stitch-browser-sdk": "^4.8.0",
"mongodb-stitch-server-sdk": "^4.8.0",
"no-scroll": "^2.1.1",
"prop-types": "^15.7.2",
"query-string": "^6.13.7",
"rasterizehtml": "^1.3.0",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-helmet": "^6.1.0",
"react-loadable": "^5.5.0",
"sanitize-html": "^2.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}