-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
73 lines (73 loc) · 2.04 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
{
"name": "spectrum-interface",
"version": "1.0.0",
"private": true,
"description": "A Ui for go-spectrum using Vue and Nuxt",
"author": "bitterlox",
"scripts": {
"build": "nuxt build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint-fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix .",
"dev": "nuxt",
"generate": "nuxt generate",
"start": "nuxt start",
"test": "jest"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.2",
"@mdi/js": "^5.8.55",
"@nuxtjs/axios": "^5.12.4",
"@nuxtjs/i18n": "^7.2.0",
"@octano/persona": "^1.4.0",
"apexcharts": "^3.23.1",
"apollo-cache-inmemory": "^1.6.6",
"apollo-client": "^2.6.10",
"apollo-link-http": "^1.5.17",
"consola": "^2.15.3",
"ethereumjs-util": "^7.0.8",
"ethers": "^5.5.3",
"graphql": "^15.5.0",
"graphql-tag": "^2.11.0",
"json-schema-faker": "^0.5.0-rcv.34",
"json-schema-ref-parser": "^9.0.7",
"markdown-it": "^12.0.4",
"mersenne-twister": "^1.1.0",
"nuxt": "^2.14.12",
"utf8": "^3.0.0",
"vue-apexcharts": "^1.6.0",
"vue-clipboard2": "^0.3.1",
"vue-highlightjs": "^1.3.3",
"vue-notification": "^1.3.20",
"vue-smooth-reflow": "^0.1.12"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "7.12.17",
"@nuxt/test-utils": "^0.1.3",
"@nuxtjs/eslint-config": "^3.1.0",
"@nuxtjs/eslint-module": "^2.0.0",
"@nuxtjs/moment": "^1.6.1",
"@nuxtjs/router-extras": "^1.1.1",
"@nuxtjs/vuetify": "^1.11.2",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"bignumber.js": "^9.0.1",
"eslint": "^7.16.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-nuxt": "^1.0.0",
"eslint-plugin-prettier": "^3.3.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"vue-cli-plugin-vuetify-preset-rally": "^1.0.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": "eslint"
}
}