-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.41 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
{
"name": "account",
"version": "1.28.4",
"description": "Edge Account Portal",
"private": true,
"license": "GPL",
"author": "Edge Network <[email protected]>",
"contributors": [
"Adam K Dean <[email protected]>",
"Jim Lambie <[email protected]>",
"Jay Whitmore <[email protected]>",
"Will Garrett <[email protected]"
],
"scripts": {
"build": "vue-cli-service build",
"dev": "node -r dotenv/config ./node_modules/.bin/vue-cli-service --port 8000 serve",
"dev:local": "DOTENV_CONFIG_PATH=.env.local npm run dev",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --fix --ext .js,.vue src",
"start": "node server/index.js",
"testnet": "DOTENV_CONFIG_PATH=.env.testnet npm run dev"
},
"main": "server/index.js",
"dependencies": {
"@chenfengyuan/vue-qrcode": "^2.0.0",
"@edge/account-utils": "^0.4.1",
"@edge/cache-config": "^1.1.0",
"@edge/index-utils": "^0.6.2",
"@headlessui/vue": "^1.7.3",
"@heroicons/vue": "^1.0.6",
"@novnc/novnc": "^1.3.0",
"@vueform/toggle": "^2.1.2",
"@vuelidate/core": "^2.0.0",
"@vuelidate/validators": "^2.0.0",
"autonumeric": "^4.6.0",
"chart.js": "^3.9.1",
"click-outside-vue3": "^4.0.1",
"core-js": "^3.25.5",
"cron-validate": "^1.4.5",
"dayjs": "^1.11.5",
"detect-browser": "^5.3.0",
"dotenv": "^8.2.0",
"elliptic": "^6.5.4",
"express": "^4.18.2",
"flat": "^5.0.2",
"js-cookie": "^3.0.1",
"markdown-it": "^13.0.1",
"moment": "^2.29.3",
"morgan": "^1.10.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"path": "^0.12.7",
"ramda": "^0.27.2",
"speakeasy": "^2.0.0",
"superagent": "^7.1.5",
"swrv": "^1.0.0-beta.8",
"v-mask": "^2.3.0",
"vue": "^3.4.27",
"vue-chart-3": "^3.1.8",
"vue-router": "^4.1.5",
"vue-slider-component": "^4.0.0-beta.9",
"vuex": "^4.0.2",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@edge/eslint-config-javascript": "^0.1.5",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-router": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"@vue/compiler-sfc": "^3.0.0",
"autoprefixer": "^9.8.8",
"eslint": "^8.25.0",
"eslint-plugin-vue": "^8.7.1",
"lodash": "^4.17.21",
"nodemon": "^2.0.20",
"postcss": "^7.0.39",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.2.17"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}