-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 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
{
"name": "criipto-document-signatures-docs",
"version": "1.0.0",
"private": true,
"description": "Criipto Document Signatures Docs",
"author": "Mick Hansen",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "gatsby develop",
"start": "gatsby clean && gatsby develop",
"codegen": "npm run codegen:gatsby && npm run codegen:signatures",
"codegen:gatsby": "graphql-codegen -c graphql-gatsby-codegen.yml",
"codegen:signatures": "npm run codegen:signatures:graphql && npm run codegen:signatures:csharp",
"codegen:signatures:graphql": "graphql-codegen -c graphql-signatures-codegen.ts",
"codegen:signatures:csharp": "cd src/examples && dotnet build",
"check": "tsc --noEmit && npm run check:signatures:csharp",
"check:signatures:csharp": "./check-signatures-csharp.sh",
"schema": "npm run schema:signatures",
"schema:signatures": "curl https://signatures-api.criipto.com/v1/graphql > graphql-signatures-schema.json",
"build": "rm -rf .cache/ && gatsby build && mv public/changelog-1.json public/changelog.json",
"serve": "gatsby serve",
"clean": "gatsby clean"
},
"dependencies": {
"@criipto/signatures": "^1.8.0",
"@criipto/ui-operations-status": "^1.1.1",
"@fontsource/roboto-mono": "^4.5.8",
"@fortawesome/fontawesome-svg-core": "^1.3.0",
"@fortawesome/free-solid-svg-icons": "^6.0.0",
"@fortawesome/react-fontawesome": "^0.1.17",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^1.6.22",
"@reduxjs/toolkit": "^1.7.1",
"@sentry/gatsby": "^6.18.2",
"algoliasearch": "^4.12.2",
"classnames": "^2.3.1",
"dotenv": "^16.0.0",
"gatsby": "^4.11.0",
"gatsby-plugin-algolia": "^0.26.0",
"gatsby-plugin-json-output": "^1.2.0",
"gatsby-plugin-manifest": "^4.11.1",
"gatsby-plugin-mdx": "^3.4.0",
"gatsby-plugin-react-helmet": "^5.4.0",
"gatsby-plugin-sitemap": "^5.4.0",
"graphiql": "^1.5.16",
"graphql-tag": "^2.12.6",
"lodash": "^4.17.21",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-helmet": "^6.1.0",
"react-instantsearch-dom": "^6.22.0",
"react-markdown": "^2.5.1",
"react-redux": "^7.2.6",
"react-syntax-highlighter": "^15.5.0",
"redux": "^4.1.2"
},
"devDependencies": {
"@fontsource/ibm-plex-sans": "^4.5.13",
"@fontsource/raleway": "^4.5.0",
"@fontsource/roboto-slab": "^4.5.1",
"@graphql-codegen/cli": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@tailwindcss/typography": "^0.5.0",
"@types/mdx-js__react": "^1.5.5",
"@types/react-helmet": "^6.1.5",
"@types/react-instantsearch-dom": "^6.12.2",
"@types/react-syntax-highlighter": "^15.5.3",
"autoprefixer": "^10.4.0",
"gatsby-plugin-image": "^2.11.0",
"gatsby-plugin-netlify": "^4.1.0",
"gatsby-plugin-postcss": "^5.4.0",
"gatsby-plugin-sharp": "^4.10.0",
"gatsby-remark-images": "^6.9.0",
"gatsby-source-filesystem": "^4.4.0",
"gatsby-transformer-sharp": "^4.10.0",
"postcss": "^8.4.5",
"tailwindcss": "^3.0.7",
"ts-node": "^10.9.1"
}
}