This repository has been archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
60 lines (60 loc) · 1.67 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
{
"name": "lunie3",
"version": "1.0.0",
"license": "Apache-2.0",
"scripts": {
"dev": "nuxt",
"analyze": "nuxt build -a",
"build": "nuxt build",
"start": "nuxt start",
"generate": "nuxt generate",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:style": "stylelint **/*.{vue,css} --ignore-path .gitignore",
"lint": "yarn lint:style && yarn lint:js"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"dependencies": {
"@cosmjs/launchpad": "^0.23.1",
"@cosmjs/launchpad-ledger": "^0.23.1",
"@ledgerhq/hw-transport-webhid": "^5.30.0",
"@ledgerhq/hw-transport-webusb": "^5.30.0",
"@nuxtjs/axios": "^5.12.2",
"bech32": "^1.1.4",
"bignumber.js": "^9.0.1",
"cookie-universal-nuxt": "^2.1.4",
"core-js": "^3.8.0",
"dayjs": "^1.9.6",
"lodash": "^4.17.20",
"nuxt": "^2.15.2",
"nuxt-material-design-icons": "^1.0.4",
"vue-clipboard2": "^0.3.1",
"vue-infinite-scroll": "^2.0.2",
"vue-scrollto": "^2.20.0",
"vue-simple-progress": "^1.1.1",
"vuelidate": "^0.7.6"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^5.0.0",
"@nuxtjs/eslint-module": "^3.0.1",
"@nuxtjs/stylelint-module": "^4.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-nuxt": "^2.0.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"lint-staged": "^10.5.4",
"prettier": "^2.2.1",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-standard": "^20.0.0"
}
}