This repository has been archived by the owner on Oct 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.55 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": "aave-improvement-process",
"private": true,
"description": "Aave's Improvement Process",
"version": "1.0.0",
"license": "AGPLv3",
"author": "Aave",
"contributors": [
"David Truong <[email protected]>"
],
"engines": {
"node": "12.x"
},
"dependencies": {
"@react-hook/window-size": "^3.0.6",
"ajv": "^8.6.2",
"bs58": "^4.0.1",
"classnames": "^2.2.6",
"ethers": "^5.4.6",
"fs": "0.0.1-security",
"gatsby": "^2.20.25",
"gatsby-cli": "^2.12.48",
"gatsby-image": "^2.3.4",
"gatsby-plugin-google-analytics": "^2.2.4",
"gatsby-plugin-manifest": "^2.3.5",
"gatsby-plugin-page-load-delay": "^0.1.2",
"gatsby-plugin-react-helmet": "^3.2.4",
"gatsby-plugin-react-svg": "^3.0.0",
"gatsby-plugin-sass": "^2.3.6",
"gatsby-plugin-sharp": "^2.5.6",
"gatsby-plugin-typography": "^2.4.3",
"gatsby-remark-copy-linked-files": "^2.2.3",
"gatsby-remark-images": "^3.2.4",
"gatsby-remark-prismjs": "^3.4.3",
"gatsby-remark-responsive-iframe": "^2.3.3",
"gatsby-remark-smartypants": "^2.2.3",
"gatsby-source-filesystem": "^2.2.4",
"gatsby-transformer-remark": "^2.7.3",
"gatsby-transformer-sharp": "^2.4.6",
"markdown-to-json": "^0.5.4",
"moment": "^2.24.0",
"node-fetch": "^2.6.1",
"node-sass": "^4.14.1",
"prismjs": "^1.19.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"react-helmet": "^5.2.1",
"react-typography": "^0.16.19",
"typeface-merriweather": "0.0.72",
"typeface-open-sans": "0.0.75",
"typeface-roboto": "0.0.75",
"typography": "^0.16.19",
"typography-theme-github": "^0.16.19"
},
"devDependencies": {
"gh-pages": "^2.2.0",
"prettier": "2.0.4"
},
"homepage": "https://github.com/aave/aip",
"keywords": [
"gatsby"
],
"main": "n/a",
"repository": {
"type": "git",
"url": "git+https://github.com/aave/aip"
},
"scripts": {
"build": "gatsby build --prefix-paths",
"develop": "gatsby develop",
"parse-markdown": "m2j ./content/aips/*.md -c -o ./content/ipfs-aips/all-aips.json",
"upload:pinata-thegraph": "node aip-uploader.js && rm tmp",
"validation:aip-schema": "node ./aip-schema-validation.js",
"generate-filename": "node aip-filename-generator.js",
"format": "prettier --write \"**/*.{js,jsx,json,md}\"",
"start": "npm run develop",
"serve": "gatsby serve --prefix-paths",
"clean": "gatsby clean",
"test": "echo \"Write tests! -> https://gatsby.dev/unit-testing\" && exit 1",
"deploy": "gatsby build --prefix-paths && gh-pages -d public"
}
}