-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
138 lines (138 loc) · 3.92 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "cardano-asterium-explorer",
"description": "The cardano community explorer",
"version": "1.0.0",
"private": true,
"author": "Martín Schere Salamanco | Asterium",
"license": "MIT",
"keywords": [
"nextjs",
"starter",
"typescript"
],
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"lint": "eslint --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\"",
"format": "prettier --ignore-path .gitignore \"src/**/*.+(ts|js|tsx)\" --write",
"postinstall": "husky install",
"postbuild": "next-sitemap",
"test": "jest --no-cache",
"commit": "cz"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint --fix",
"yarn format"
]
},
"dependencies": {
"@ajna/pagination": "1.4.19",
"@babel/register": "7.17.7",
"@blockfrost/blockfrost-js": "4.1.0",
"@cardano-ogmios/client": "5.3.0",
"@chakra-ui/icons": "1.1.7",
"@chakra-ui/react": "1.8.8",
"@dcspark/cardano-multiplatform-lib-browser": "0.3.0",
"@emotion/react": "^11",
"@emotion/styled": "^11",
"@fontsource/inter": "4.5.9",
"@mikro-orm/core": "5.2.1",
"@mikro-orm/mongodb": "5.2.1",
"@monaco-editor/react": "4.4.5",
"@prisma/client": "3.13.0",
"@types/lunr": "2.3.4",
"@types/react-window": "1.8.5",
"@uiw/react-monacoeditor": "3.5.3",
"@uiw/react-textarea-code-editor": "1.4.4",
"ace-builds": "1.5.1",
"ahooks": "3.3.10",
"axios": "0.27.2",
"base-58": "0.0.1",
"camelcase-keys": "7.0.2",
"chakra-ui-flashless": "0.0.8",
"classnames": "2.3.1",
"d3-scale": "4.0.2",
"feather-icons": "4.29.0",
"formik": "2.2.9",
"framer-motion": "^6",
"fuse.js": "6.6.2",
"intercept-stdout": "0.1.2",
"jsoneditor": "9.7.4",
"jsoneditor-react": "3.1.2",
"lucid-cardano": "0.3.2",
"lunr": "2.3.9",
"minimist": "1.2.6",
"mocha": "10.0.0",
"moment": "2.29.3",
"monaco-editor": "0.33.0",
"monaco-editor-webpack-plugin": "7.0.1",
"mongodb": "4.7.0",
"mongoose": "6.4.2",
"next": "12.1.5",
"next-connect": "0.12.2",
"next-remove-imports": "1.0.6",
"next-seo": "5.4.0",
"next-sitemap": "3.0.5",
"next-transpile-modules": "9.0.0",
"nextjs-progressbar": "0.0.14",
"object-editor-react": "1.1.0",
"prisma": "3.13.0",
"prismjs": "1.28.0",
"react": "17.0.2",
"react-ace": "7.0.5",
"react-debounce-input": "3.2.5",
"react-dom": "17.0.2",
"react-feather": "2.0.9",
"react-icons": "4.3.1",
"react-json-editor-ajrm": "2.5.13",
"react-lunr": "1.1.0",
"react-monaco-editor": "0.48.0",
"react-paginate": "8.1.3",
"react-simple-code-editor": "0.11.0",
"react-window": "1.8.7",
"recharts": "2.1.9",
"redis": "4.1.0",
"sass": "1.51.0",
"ts-mocha": "10.0.0",
"zustand": "4.0.0-rc.1"
},
"devDependencies": {
"@babel/preset-typescript": "7.17.12",
"@commitlint/cli": "16.2.3",
"@commitlint/config-conventional": "16.2.1",
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.3.0",
"@types/chai": "4.3.1",
"@types/mocha": "9.1.1",
"@types/node": "16.11.27",
"@types/prismjs": "1.26.0",
"@types/react": "18.0.12",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"chai": "4.3.6",
"commitizen": "4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "8.14.0",
"eslint-config-next": "12.1.5",
"eslint-config-prettier": "8.5.0",
"eslint-import-resolver-typescript": "2.7.1",
"eslint-plugin-prettier": "4.0.0",
"husky": "7.0.4",
"jest": "28.1.0",
"jest-environment-jsdom": "28.1.0",
"lint-staged": "12.4.1",
"prettier": "2.6.2",
"ts-jest": "28.0.3",
"ts-node": "10.8.0",
"typescript": "4.6.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}