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
|
{
"name": "std-curves-app",
"private": true,
"description": "A database of standard elliptic curves and their characteristics.",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1"
},
"dependencies": {
"@emotion/core": "^10.0.28",
"@fortawesome/fontawesome-svg-core": "^1.2.30",
"@fortawesome/free-brands-svg-icons": "^5.14.0",
"@fortawesome/free-regular-svg-icons": "^5.14.0",
"@fortawesome/free-solid-svg-icons": "^5.14.0",
"@fortawesome/react-fontawesome": "^0.1.11",
"@gatsby-contrib/gatsby-plugin-elasticlunr-search": "^2.4.2",
"@loadable/component": "^5.13.1",
"@material-ui/core": "^4.11.0",
"@mdx-js/mdx": "^1.6.16",
"@mdx-js/react": "^1.6.16",
"@mdx-js/runtime": "^1.6.16",
"@theme-ui/color": "^0.2.53",
"@theme-ui/components": "^0.3.1",
"@theme-ui/prism": "^0.2.50",
"acorn": "^6.4.1",
"fs": "0.0.1-security",
"gatsby": "^2.24.43",
"gatsby-cli": "^2.19.3",
"gatsby-plugin-manifest": "^2.4.22",
"gatsby-plugin-mdx": "^1.2.34",
"gatsby-plugin-offline": "^3.2.22",
"gatsby-plugin-plausible": "^0.0.7",
"gatsby-plugin-react-helmet": "^3.3.10",
"gatsby-plugin-sitemap": "^6.15.0",
"gatsby-plugin-theme-ui": "^0.2.53",
"gatsby-source-filesystem": "^2.3.24",
"gatsby-transformer-csv": "^2.3.10",
"gatsby-transformer-json": "^2.4.11",
"gatsby-transformer-xml": "^2.3.10",
"gatsby-transformer-yaml": "^2.4.10",
"prismjs": "^1.21.0",
"pseudocode": "^2.2.0",
"react": "^16.13.1",
"react-async-component": "^2.0.0",
"react-dom": "^16.13.1",
"react-helmet": "^5.2.1",
"react-katex": "^2.0.2",
"react-markdown": "^4.3.1",
"react-refresh": "^0.8.3",
"remark-emoji": "^2.1.0",
"remark-slug": "^5.1.2",
"theme-ui": "^0.2.52",
"typeface-ibm-plex-mono": "0.0.61",
"typeface-noto-sans": "0.0.72",
"typeface-roboto": "0.0.75",
"typescript": "^3.9.7"
},
"devDependencies": {
"gh-pages": "^3.1.0",
"prettier": "^1.19.1"
},
"repository": {
"type": "git",
"url": "https://github.com/J08nY/std-curves"
}
}
|