forked from juliencrn/usehooks-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.54 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
{
"name": "website",
"private": true,
"description": "React hook library, ready to use, written in Typescript.",
"author": "Julien CARON <[email protected]>",
"keywords": [
"gatsby",
"typescript",
"material-ui",
"prism",
"mdx"
],
"license": "MIT",
"scripts": {
"prebuild": "npm run test",
"build": "GATSBY_EXPERIMENTAL_PAGE_BUILD_ON_DATA_CHANGES=true gatsby build --log-pages",
"serve": "gatsby serve",
"start": "gatsby develop",
"clean": "gatsby clean",
"lint": "eslint '**/*.{js,jsx,ts,tsx}'",
"format": "prettier --check \"**/*.{json,md,mdx,css,scss,yaml,yml}\"",
"types-check": "tsc --noEmit",
"predeploy": "npm run build",
"deploy": "netlify deploy --prod",
"test": "npm run lint && npm run types-check"
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.6.0",
"@mdx-js/react": "^1.6.22",
"@mui/icons-material": "^5.4.1",
"@mui/material": "^5.10.5",
"@mui/styled-engine": "^5.10.5",
"@mui/styles": "^5.4.1",
"@mui/system": "^5.10.5",
"@n8tb1t/use-scroll-position": "^2.0.3",
"date-fns": "^2.29.3",
"deepmerge": "^4.2.2",
"gatsby": "^4.23.0",
"gatsby-plugin-algolia": "^0.26.0",
"gatsby-plugin-catch-links": "^4.23.0",
"gatsby-plugin-feed": "^4.23.0",
"gatsby-plugin-google-analytics": "^4.23.0",
"gatsby-plugin-manifest": "^4.23.0",
"gatsby-plugin-material-ui": "^4.1.0",
"gatsby-plugin-mdx": "^3.15.2",
"gatsby-plugin-robots-txt": "^1.7.0",
"gatsby-plugin-root-import": "^2.0.6",
"gatsby-plugin-sitemap": "^5.23.0",
"gatsby-plugin-typescript": "^4.23.0",
"gatsby-source-filesystem": "^4.23.0",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-instantsearch-dom": "^6.33.0",
"react-scroll": "^1.8.3",
"remark-codesandbox": "^0.10.1",
"usehooks-ts": "file:../"
},
"devDependencies": {
"@types/mdx-js__react": "^1.5.5",
"@types/react": "^17.0.49",
"@types/react-dom": "^17.0.17",
"@types/react-instantsearch-dom": "^6.12.2",
"@types/react-scroll": "^1.8.4",
"eslint": "^8.9.0",
"eslint-config-custom": "file:../packages/eslint-config-custom",
"gatsby-cli": "^4.23.0",
"netlify-cli": "^11.8.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/juliencrn/usehooks-ts"
},
"bugs": {
"url": "https://github.com/juliencrn/usehooks-ts/issues"
}
}