This repository has been archived by the owner on Dec 19, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
103 lines (103 loc) · 3.42 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
{
"name": "cyb-browser-extension",
"version": "1.0.0",
"description": "A Vue.js web extension",
"author": "jonybang <[email protected]>",
"scripts": {
"lint": "eslint --ext .js,.vue src",
"prettier": "prettier \"src/**/*.{js,vue}\"",
"prettier:write": "npm run prettier -- --write",
"build": "cross-env NODE_ENV=production webpack --hide-modules",
"build:dev": "cross-env NODE_ENV=development webpack --hide-modules",
"build-zip": "node scripts/build-zip.js",
"watch": "npm run build -- --watch",
"watch:dev": "cross-env HMR=true npm run build:dev -- --watch"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@cybercongress/js-amino": "https://github.com/cybercongress/js-amino.git",
"@galtproject/frontend-core": "https://github.com/galtspace/galtproject-frontend-core.git#20f6013",
"@galtproject/geesome-libs": "https://github.com/galtspace/geesome-libs.git#1a98093",
"@litvintech/cyberjs": "https://github.com/litvintech/cyberjs.git",
"autoprefixer": "^9.6.0",
"axios": "^0.19.0",
"bip39": "^3.0.2",
"cheerio": "^1.0.0-rc.3",
"dexie": "^2.0.4",
"ethers": "^4.0.30",
"font-awesome": "https://github.com/FortAwesome/Font-Awesome.git",
"hdkey": "^1.1.1",
"ip-regex": "^4.1.0",
"ipfs": "^0.35.0",
"ipfs-http-client": "^32.0.1",
"ipfs-unixfs": "0.1.16",
"ipld-dag-pb": "0.15.3",
"p-iteration": "^1.1.8",
"postcss-loader": "^3.0.0",
"shr-keys": "git+https://bitbucket.org/shareringvietnam/bc_shrcrypto.git#platform/web_bech32",
"simple-crypto-js": "^2.0.2",
"sjcl": "^1.0.8",
"tingle.js": "^0.15.1",
"toastify-js": "^1.5.0",
"utf8": "^3.0.0",
"vue": "^2.6.10",
"vue-notification": "^1.3.16",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"webextension-polyfill": "^0.3.1"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-optional-chaining": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/runtime-corejs3": "^7.4.0",
"@types/chai": "^4.1.3",
"@types/mocha": "^5.2.2",
"@types/node": "^8.10.17",
"archiver": "^3.0.0",
"babel-core": "^6.26.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.2",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"copy-webpack-plugin": "^4.5.3",
"core-js": "^3.0.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.1",
"ejs": "^2.6.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-config-prettier": "^4.3.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.2",
"extract-loader": "^3.0.0",
"file-loader": "^1.1.11",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^2.4.0",
"mini-css-extract-plugin": "^0.4.4",
"node-sass": "^4.9.3",
"prettier": "^1.17.1",
"pretty-quick": "^1.8.0",
"sass-loader": "^7.1.0",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-config-airbnb": "^5.9.2",
"typescript": "^3.0.1",
"vue-loader": "^15.4.2",
"vue-template-compiler": "^2.6.10",
"web-ext-types": "^2.1.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-extension-reloader": "^1.1.0"
}
}