generated from jimmychu0807/substrate-front-end-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.25 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
{
"name": "substrate-front-end-template",
"version": "0.1.0",
"private": true,
"author": "HKWTF <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/hkwtf/substrate-frontend-template",
"bugs": {
"url": "https://github.com/hkwtf/substrate-frontend-template/issues"
},
"keywords": [
"substrate",
"substrate-ui",
"polkadot-js"
],
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "CI=true react-app-rewired test",
"eject": "react-scripts eject",
"eslint:check": "eslint --ext .jsx,.js src/",
"eslint:write": "eslint --fix --ext .jsx,.js src/",
"prettier:check": "prettier -c src/*",
"prettier:write": "prettier -w src/*",
"check": "pnpm eslint:check && pnpm prettier:check && pnpm build",
"fmt": "pnpm eslint:write && pnpm prettier:write",
"deploy": "gh-pages -d build -m '[ci skip] Updates'"
},
"dependencies": {
"@polkadot/api": "^10.9.1",
"@polkadot/extension-dapp": "^0.46.5",
"@polkadot/keyring": "^12.4.2",
"@polkadot/networks": "^12.4.2",
"@polkadot/types": "^10.9.1",
"@polkadot/ui-keyring": "^3.6.2",
"@polkadot/ui-settings": "^3.6.2",
"@polkadot/util": "^12.4.2",
"@polkadot/util-crypto": "^12.4.2",
"node-polyfill-webpack-plugin": "^2.0.1",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-copy-to-clipboard": "^5.1.0",
"react-dom": "^18.2.0",
"react-scripts": "^5.0.0",
"semantic-ui-css": "^2.5.0",
"semantic-ui-react": "^3.0.0-beta.0",
"stream-browserify": "^3.0.0"
},
"devDependencies": {
"typescript": "^4.9.5",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react-app": "^7.0.1",
"gh-pages": "^6.0.0",
"prettier": "3.0.2",
"react-app-rewired": "^2.2.1",
"semistandard": "^17.0.0"
},
"eslintConfig": {
"extends": [
"react-app",
"eslint:recommended",
"prettier"
]
},
"engines": {
"node": ">=18",
"npm": ">=9"
},
"browserslist": {
"production": [
">0.2%",
"not ie <= 99",
"not android <= 4.4.4",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}