This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathpackage.json
79 lines (79 loc) · 2.01 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
{
"name": "spl-token-ui",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@project-serum/sol-wallet-adapter": "^0.1.3",
"@solana/spl-token": "0.0.13",
"@solana/web3.js": "^1.20.0",
"bip32": "^2.0.6",
"bip39": "^3.0.2",
"bs58": "^4.0.1",
"bulma": "^0.9.1",
"core-js": "^3.6.5",
"tweetnacl": "^1.0.3",
"vue": "^3.0.2",
"vue-router": "^4.0.0-beta.13"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.15.1",
"@fullhuman/postcss-purgecss": "^3.0.0",
"@fullhuman/vue-cli-plugin-purgecss": "~3.0.1",
"@types/bn.js": "^4.11.6",
"@types/bs58": "^4.0.1",
"@types/node": "^14.11.10",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "^4.5.7",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.0.2",
"@vue/eslint-config-typescript": "^5.0.2",
"babel-eslint": "^10.1.0",
"copy-to-clipboard": "^3.3.1",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-only-warn": "^1.0.2",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.0.0-0",
"sass": "^1.27.0",
"sass-loader": "^10.0.3",
"typescript": "~3.9.3",
"webpack-bundle-analyzer": "^4.1.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended",
"plugin:prettier/recommended",
"@vue/typescript"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {
"no-unused-vars": "off",
"@typescript-eslint/no-unused-vars": [
"error"
]
},
"plugins": [
"only-warn"
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}