-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
72 lines (72 loc) · 1.84 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
{
"name": "dapp-robonomics.network",
"version": "0.6.0",
"private": true,
"license": "BSD-3-Clause",
"author": "vol4tim <sas@robonomics.network>",
"scripts": {
"serve": "vue-cli-service serve",
"serve-8080": "npx kill-port 8080 && vue-cli-service serve --port 8080",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@chainsafe/libp2p-noise": "^15.0.0",
"@libp2p/circuit-relay-v2": "^1.0.16",
"@libp2p/identify": "^1.0.15",
"@libp2p/keychain": "^4.0.14",
"@libp2p/mplex": "^10.0.16",
"@libp2p/webrtc": "^4.0.20",
"@libp2p/websockets": "^8.0.16",
"@polkadot/api": "^9.14.1",
"@polkadot/ui-keyring": "^2.11.1",
"axios": "^1.4.0",
"core-js": "^3.32.0",
"datastore-level": "^10.1.8",
"dayjs": "^1.11.9",
"decimal.js-light": "^2.5.1",
"ethers": "^6.13.4",
"ipfs-http-client": "^60.0.0",
"libp2p": "^1.2.4",
"mipd": "^0.0.7",
"robonomics-interface": "^0.3.2",
"robonomics-ui-vue": "0.5.2-beta.5",
"uuid": "^9.0.1",
"vue": "^3.4.15",
"vue-router": "^4.2.5",
"vuex": "^4.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/eslint-parser": "^7.23.3",
"@babel/plugin-transform-private-methods": "^7.23.3",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.20.1",
"url": "^0.11.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
"vue/multi-word-component-names": "warn"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}