forked from CosmosContracts/juno-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.62 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
{
"name": "juno-tools",
"version": "0.1.0-beta",
"scripts": {
"build": "next build && next export",
"dev": "NODE_OPTIONS='--inspect' next dev",
"lint": "next lint && prettier --write \"**/*.{css,js,jsx,json,md,ts,tsx}\"",
"precommit": "yarn lint",
"start": "next start"
},
"dependencies": {
"@aws-sdk/client-s3": "^3",
"@cosmjs/cosmwasm-stargate": "^0",
"@cosmjs/encoding": "^0",
"@cosmjs/math": "^0",
"@cosmjs/proto-signing": "^0",
"@cosmjs/stargate": "^0",
"@fontsource/jetbrains-mono": "^4",
"@fontsource/roboto": "^4",
"@popperjs/core": "^2.11.4",
"@svgr/webpack": "^6",
"axios": "^0",
"clsx": "^1.1.1",
"compare-versions": "^4",
"daisyui": "^1",
"next": "^12",
"next-transpile-modules": "^9",
"react": "^17",
"react-dom": "^17",
"react-hot-toast": "^2",
"react-icons": "^4",
"react-popper": "^2.2.5",
"react-syntax-highlighter": "^15"
},
"devDependencies": {
"@types/node": "^17",
"@types/react": "^17",
"@types/react-syntax-highlighter": "^13",
"autoprefixer": "^10",
"eslint": "^8",
"eslint-config-next": "^12",
"postcss": "^8",
"pre-commit": "^1",
"prettier": "^2",
"tailwindcss": "^3",
"typescript": "^4"
},
"eslintConfig": {
"extends": [
"next",
"next/core-web-vitals"
],
"rules": {
"@next/next/no-img-element": [
"off"
]
},
"root": true
},
"pre-commit": [
"lint"
],
"prettier": {
"semi": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"private": true
}