-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.98 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.98 KB
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": "criipto-docs",
"version": "1.0.0",
"private": true,
"description": "Criipto Docs",
"author": "Criipto",
"keywords": [
"gatsby"
],
"scripts": {
"develop": "NODE_OPTIONS=--max-old-space-size=8192 gatsby develop",
"start": "gatsby clean && NODE_OPTIONS=--max-old-space-size=8192 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 && npm run check:signatures:python",
"check:signatures:csharp": "./check-signatures-csharp.sh",
"check:signatures:python": "cd src/examples && uv run ruff check && uv run pyright",
"schema": "npm run schema:signatures",
"schema:signatures": "curl https://signatures-api-test.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",
"prepare": "husky",
"test": "npm run test:python && npm run test:nodejs && npm run test:dotnet",
"test:nodejs": "node src/examples/run-ts-examples.mts",
"test:python": "uv run src/examples/run-python.examples.py",
"test:dotnet": "node src/examples/run-dotnet-examples.mts"
},
"dependencies": {
"@criipto/signatures": "^1.31.0",
"@fontsource/ibm-plex-mono": "^5.2.7",
"@fontsource/roboto-mono": "^4.5.8",
"@fortawesome/fontawesome-svg-core": "^7.1.0",
"@fortawesome/free-solid-svg-icons": "^7.1.0",
"@fortawesome/react-fontawesome": "^3.2.0",
"@mdx-js/mdx": "^1.6.22",
"@mdx-js/react": "^2.0.0",
"@reduxjs/toolkit": "^2.5.1",
"@sentry/gatsby": "^10.38.0",
"algoliasearch": "^4.12.2",
"classnames": "^2.3.1",
"dotenv": "^16.0.0",
"gatsby": "^5.16.0",
"gatsby-plugin-algolia": "^1.0.3",
"gatsby-plugin-json-output": "^1.2.0",
"gatsby-plugin-manifest": "^5.16.0",
"gatsby-plugin-mdx": "^5.16.0",
"gatsby-plugin-sitemap": "^6.16.0",
"graphiql": "^4.1.2",
"graphql-tag": "^2.12.6",
"jose": "^6.1.0",
"lodash": "^4.17.21",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-instantsearch": "^7.15.3",
"react-markdown": "^2.5.1",
"react-redux": "^9.2.0",
"react-syntax-highlighter": "^15.5.0",
"redux": "^5.0.0",
"rehype-slug": "^6.0.0",
"ts-pattern": "^5.9.0"
},
"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/node": "^24.7.1",
"@types/react-dom": "^19.2.3",
"@types/react-syntax-highlighter": "^15.5.3",
"autoprefixer": "^10.4.0",
"gatsby-adapter-netlify": "^1.4.0",
"gatsby-plugin-feed": "^5.16.0",
"gatsby-plugin-image": "^3.16.0",
"gatsby-plugin-postcss": "^6.16.0",
"gatsby-plugin-sharp": "^5.16.0",
"gatsby-remark-images": "^7.16.0",
"gatsby-source-filesystem": "^5.16.0",
"gatsby-transformer-sharp": "^5.16.0",
"github-slugger": "^2.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.3",
"postcss": "^8.4.5",
"prettier": "^3.6.2",
"tailwindcss": "^3.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.7.3"
},
"lint-staged": {
"*.{md,mdx}": [
"awk 'BEGIN {in_block=0; err=0} /^```/ { if (!in_block && /^```$/) { printf(\"Missing language tag on line %s\\n\", NR); err=1 }; in_block = !in_block } END { exit err }'",
"prettier --write"
],
"*.{tsx?,mjs,sh,cjs,json,graphql,yml}": "prettier --write",
"*.py": "uv run ruff format"
}
}