-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.73 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.73 KB
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
{
"name": "four-wal",
"version": "1.1.6",
"private": true,
"scripts": {
"serve": "vue-cli-service build --mode development --watch",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@dreamfactoryhr/web3t": "^1.0.2",
"@polkadot/keyring": "^6.0.5",
"@polkadot/types": "^4.1.1",
"@polkadot/util": "^6.0.5",
"@polkadot/util-crypto": "^6.0.5",
"@solana/web3.js": "^1.37.0",
"@tailwindcss/forms": "^0.2.1",
"@tailwindcss/postcss7-compat": "^2.0.2",
"autoprefixer": "^9",
"axios": "^0.26.1",
"bs58": "^5.0.0",
"core-js": "^3.21.1",
"crypto-js": "^4.1.1",
"ethers": "^5.6.2",
"extension-streams": "^1.0.7",
"node-rsa": "^1.1.1",
"postcss": "^7",
"random-string": "^0.2.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"tronweb": "^4.2.0",
"vue": "^2.6.14",
"vue-router": "^3.5.3",
"vuex": "^3.6.2",
"wasm-loader": "^1.3.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.17",
"@vue/cli-plugin-eslint": "^4.5.17",
"@vue/cli-plugin-router": "^4.5.17",
"@vue/cli-service": "^4.5.17",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^9.5.0",
"prettier": "^2.2.1",
"vue-cli-plugin-browser-extension": "^0.25.2",
"vue-cli-plugin-tailwind": "~2.0.6",
"vue-template-compiler": "^2.6.14"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}