forked from witnet/sheikah
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.83 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
{
"name": "sheikah",
"version": "0.1.0",
"description": "A Witnet compatible desktop wallet interface and data requests development environment.",
"private": true,
"author": "Witnet Foundation <info@witnet.foundation>",
"repository": {
"type": "git",
"url": "git+https://github.com/witnet/sheikah.git"
},
"bugs": {
"url": "https://github.com/witnet/sheikah/issues"
},
"license": "GPL-3.0",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"lint!": "vue-cli-service lint --fix",
"electron:build": "vue-cli-service electron:build",
"electron:serve": "vue-cli-service electron:serve",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"storybook:build": "vue-cli-service storybook:build -c config/storybook",
"storybook:serve": "vue-cli-service storybook:serve -p 6006 -c config/storybook",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"test": "yarn test:unit && yarn test:e2e",
"travis": "yarn lint && yarn test",
"clean-deps": "rm -rf node_modules",
"clean": "yarn clean-deps && rm -rf dist_electron",
"reinstall": "yarn clean-deps && yarn"
},
"main": "background.js",
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.1",
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@fortawesome/vue-fontawesome": "^0.1.6",
"axios": "^0.19.1",
"cbor": "^4.1.5",
"element-ui": "^2.4.5",
"rpc-websockets": "^4.3.5",
"uuid": "^3.3.2",
"vue": "^2.6.10",
"vue-router": "^3.0.3",
"vuex": "^3.0.1",
"witnet-radon-js": "0.2.0"
},
"devDependencies": {
"@storybook/addon-actions": "^4.1.0 || ^5.0.0",
"@storybook/addon-knobs": "^4.1.0 || ^5.0.0",
"@storybook/addon-links": "^4.1.0 || ^5.0.0",
"@storybook/addon-notes": "^4.1.0 || ^5.0.0",
"@vue/cli-plugin-babel": "^3.7.0",
"@vue/cli-plugin-e2e-cypress": "^3.7.0",
"@vue/cli-plugin-eslint": "^3.7.0",
"@vue/cli-plugin-unit-jest": "^3.7.0",
"@vue/cli-service": "^3.7.0",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"electron": "^5.0.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"sass": "^1.18.0",
"sass-loader": "^7.1.0",
"vue-cli-plugin-electron-builder": "^1.3.2",
"vue-cli-plugin-element": "^1.0.1",
"vue-cli-plugin-storybook": "^0.6.1",
"vue-template-compiler": "^2.5.21"
}
}