-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.54 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
{
"name": "explorer",
"version": "1.0.0",
"description": "Explore and interact with the data present on the MESG Network",
"author": "Anthony ESTEBE",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate && cp _redirects dist/_redirects",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --ignore-path .eslintignore ."
},
"lint-staged": {
"*.{js,vue}": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@cosmostation/cosmosjs": "^0.5.2",
"@mesg/api": "^0.2.0",
"@nuxtjs/google-analytics": "^2.2.3",
"@nuxtjs/pwa": "^3.0.0-0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"cytoscape": "^3.12.1",
"cytoscape-dagre": "^2.2.2",
"ipfs-http-client": "^40.0.1",
"markdown-it": "^10.0.0",
"node-fetch": "^2.6.0",
"nuxt": "^2.10.2",
"nuxt-env": "^0.1.0",
"pluralize": "^8.0.0",
"tar": "^5.0.5",
"tendermint": "git+https://github.com/mesg-foundation/js-tendermint.git#beta",
"twitter": "^1.7.1",
"vue-clipboard2": "^0.3.1",
"vue-pluralize": "0.0.2"
},
"devDependencies": {
"@nuxtjs/vuetify": "^1.0.0",
"@nuxtjs/eslint-config": "^1.0.1",
"@nuxtjs/eslint-module": "^1.0.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.1.0",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"prettier": "^1.16.4",
"husky": "^2.6.0",
"lint-staged": "^8.2.1"
}
}