-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
116 lines (116 loc) · 3.28 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
{
"name": "ink-substrate-explorer-frontend",
"version": "1.0.6",
"description": "Ink Explorer is an application that provides Ink contracts related information on Substrate based blockchains.",
"author": "Blockcoders <engineering@blockcoders.io>",
"license": "MIT",
"readmeFilename": "README.md",
"engineStrict": false,
"engines": {
"node": "^14.x || >=16.x"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"start:dev": "next dev",
"build": "next build",
"start:prod": "next start",
"lint": "eslint \"{pages,components,tests}/**/*.{ts,tsx}\" --fix",
"lint:ci": "eslint \"{pages,components,tests}/**/*.{ts,tsx}\"",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"codegen": "graphql-codegen --config codegen.yml"
},
"precommit": [
"lint:ci",
"test:cov"
],
"repository": {
"type": "git",
"url": "git+https://github.com/blockcoders/ink-substrate-explorer-frontend.git"
},
"keywords": [
"substrate",
"polkadot",
"polkadot-js",
"kusama",
"blockchain",
"nft",
"token",
"erc20",
"trait-erc20",
"erc721",
"trait-erc721",
"erc1155",
"trait-erc1155",
"smart-contracts",
"dot",
"trait",
"ink!",
"ink",
"ink-contract",
"ink-event"
],
"bugs": {
"url": "https://github.com/blockcoders/ink-substrate-explorer-frontend/issues"
},
"homepage": "https://github.com/blockcoders/ink-substrate-explorer-frontend#readme",
"dependencies": {
"@apollo/client": "^3.7.1",
"@graphql-codegen/typescript-operations": "^2.5.7",
"@graphql-codegen/typescript-react-apollo": "^3.3.6",
"@polkadot/api": "9.8.2",
"@polkadot/api-contract": "9.8.2",
"@polkadot/extension-dapp": "0.44.6",
"@polkadot/util": "10.1.12",
"@popperjs/core": "^2.11.6",
"@types/lodash": "^4.14.189",
"bn.js": "^5.2.1",
"bootstrap": "^5.2.2",
"graphql": "^16.6.0",
"graphql-tag": "^2.12.6",
"highlight.js": "^11.6.0",
"lodash": "^4.17.21",
"net": "^1.0.2",
"next": "12.3.3",
"next-with-apollo": "^5.3.0",
"pre-commit": "^1.2.2",
"react": "18.2.0",
"react-bootstrap": "^2.6.0",
"react-bootstrap-sidebar-menu": "^2.0.3",
"react-dom": "18.2.0",
"react-dropzone": "^14.2.3",
"react-intl": "^6.2.1",
"react-toastify": "^9.1.1",
"sass": "^1.56.1",
"tls": "^0.0.1"
},
"devDependencies": {
"@graphql-codegen/cli": "2.13.12",
"@graphql-codegen/client-preset": "1.1.4",
"@graphql-codegen/introspection": "2.2.1",
"@testing-library/dom": "^7.31.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.2.3",
"@types/node": "^16.18.3",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-next": "12.3.3",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "4.9.3"
}
}