forked from prisma/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.26 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
108
109
110
111
112
{
"name": "prisma2-docs",
"description": "Prisma.io docs v2.0",
"version": "1.0.0",
"author": "Nilufar Bava <[email protected]>",
"dependencies": {
"@mdx-js/loader": "1.6.22",
"@mdx-js/mdx": "1.6.22",
"@mdx-js/react": "1.6.22",
"@philpl/buble": "0.19.7",
"@prisma/client": "^4.8.1",
"@react-aria/overlays": "^3.20.0",
"@react-aria/tooltip": "^3.7.0",
"@react-aria/utils": "^3.23.0",
"@react-stately/tooltip": "^3.4.6",
"algoliasearch": "4.14.2",
"babel-plugin-styled-components": "2.0.7",
"gatsby": "4.22.1",
"gatsby-plugin-algolia": "^1.0.3",
"gatsby-plugin-catch-links": "4.22.0",
"gatsby-plugin-google-tagmanager": "4.22.0",
"gatsby-plugin-image": "2.22.0",
"gatsby-plugin-mdx": "3.15.2",
"gatsby-plugin-meta-redirect": "1.1.1",
"gatsby-plugin-robots-txt": "1.7.1",
"gatsby-plugin-sharp": "4.22.0",
"gatsby-plugin-sitemap": "5.22.0",
"gatsby-plugin-smoothscroll": "1.2.0",
"gatsby-plugin-styled-components": "5.22.0",
"gatsby-remark-autolink-headers": "5.22.0",
"gatsby-remark-copy-linked-files": "5.22.0",
"gatsby-remark-normalize-paths": "1.1.0",
"gatsby-remark-rewrite-relative-links": "1.0.8",
"gatsby-remark-sectionize": "1.0.0",
"gatsby-source-filesystem": "4.22.0",
"gatsby-transformer-remark": "5.25.1",
"gatsby-transformer-sharp": "4.22.0",
"normalize.css": "^8.0.1",
"parse-numeric-range": "1.3.0",
"prop-types": "15.7.2",
"qs": "6.11.2",
"react": "17.0.2",
"react-copy-to-clipboard": "5.1.0",
"react-dom": "17.0.2",
"react-feather": "2.0.10",
"react-ga": "3.3.1",
"react-instantsearch-dom": "6.32.1",
"react-refresh": "^0.14.0",
"react-select": "5.4.0",
"react-sticky-box": "1.0.2",
"react-toastify": "9.0.8",
"styled-components": "5.3.11",
"write": "2.0.0"
},
"keywords": [
"gatsby",
"mdx",
"typescript",
"prismaio",
"howtodata",
"databases",
"styled-components"
],
"license": "Apache-2.0",
"scripts": {
"clean": "gatsby clean",
"build": "./scripts/build",
"dev": "gatsby develop",
"serve": "npm run build && gatsby serve --prefix-paths -o",
"format": "prettier . --write --check",
"install-algolia": "cd ./plugins/gatsby-algolia-indexer && npm install",
"postinstall": "husky install",
"redirect-transform": "node ./scripts/redirect-transformer.js"
},
"devDependencies": {
"@percy/cli": "^1.11.0",
"@types/node": "17.0.45",
"@types/react": "18.2.28",
"@types/react-dom": "18.2.13",
"@types/react-instantsearch-dom": "6.12.4",
"@types/styled-components": "5.1.28",
"gatsby-plugin-webpack-bundle-analyser-v2": "^1.1.31",
"husky": "7.0.4",
"is-absolute-url": "4.0.1",
"lint-staged": "11.2.6",
"path-browserify": "1.0.1",
"prettier": "2.8.8",
"prettier-plugin-prisma": "4.13.0",
"prism-react-renderer": "1.2.1",
"prisma": "^4.8.1",
"react-is": "18.2.0",
"tslint": "6.1.3",
"typescript": "4.9.5"
},
"lint-staged": {
"*.*": "prettier --write --ignore-unknown"
},
"percy": {
"version": 2,
"snapshot": {
"enableJavaScript": true,
"widths": [
1280
]
},
"discovery": {
"launch-options": {
"timeout": 100000
}
}
}
}