-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 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
{
"name": "docs",
"version": "1.0.2",
"main": "index.js",
"private": true,
"license": "MIT",
"scripts": {
"dev": "next",
"start": "next start",
"export": "next build",
"postexport": "npm run seo",
"seo": "node ./seo/seo.js",
"deploy": "AWS_PROFILE=webinc aws s3 sync out/ s3://docs.cosmology.zone",
"deploy:ci": "aws s3 sync out/ s3://docs.cosmology.zone",
"invalidate": "AWS_PROFILE=webinc aws cloudfront create-invalidation --distribution-id E2CDD5CS37JQUE --paths \"/*\"",
"invalidate:ci": "aws cloudfront create-invalidation --distribution-id E2CDD5CS37JQUE --paths \"/*\"",
"deploy:all": "npm run export && npm run deploy && ./seo/prepare.sh",
"upgrade": "yarn upgrade-interactive --latest"
},
"dependencies": {
"@chakra-ui/react": "2.4.3",
"@cosmos-kit/core": "^2.8.9",
"@cosmos-kit/react": "^2.10.9",
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@interchain-ui/react": "^1.22.11",
"chain-registry": "^1.23.0",
"chakra-react-select": "^4.6.0",
"cosmos-kit": "^2.8.6",
"fast-fuzzy": "^1.12.0",
"flexsearch": "^0.7.43",
"framer-motion": "^9.0.7",
"next": "^13",
"nextra": "^2.9.0",
"nextra-theme-docs": "^2.9.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.4.0"
},
"devDependencies": {
"@types/node": "20.10.0",
"mkdirp": "^3.0.1",
"typescript": "5.3.2"
},
"dependenciesMeta": {
"nextra": {
"injected": true
},
"nextra-theme-docs": {
"injected": true
}
}
}