-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.04 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.04 KB
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
{
"name": "nuxt-web3-quickstart",
"version": "1.0.1",
"private": true,
"scripts": {
"dev": "nuxi dev",
"build": "nuxi build",
"start": "nuxi preview",
"generate": "nuxi generate",
"prepare": "husky install",
"lint:js": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"lint:style": "stylelint **/*.{vue,css,scss} --ignore-path .gitignore --fix",
"lint": "yarn lint:js && yarn lint:style"
},
"lint-staged": {
"*.{js,vue}": "eslint",
"*.{css,vue}": "stylelint"
},
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/dotenv": "^1.4.1",
"@nuxtjs/localforage": "^1.1.0",
"@nuxtjs/pwa": "^3.3.5",
"@nuxtjs/style-resources": "^1.2.1",
"@nuxtjs/svg": "^0.3.0",
"@walletconnect/web3-provider": "^1.7.1",
"animate.css": "^4.1.1",
"bootstrap": "^5.1.3",
"core-js": "^3.20.3",
"eslint-gitignore": "^0.1.0",
"ethereum-cryptography": "^0.1.3",
"ethereumjs-util": "^7.1.3",
"fortmatic": "^2.2.1",
"node-sass": "^7.0.1",
"nuxt-edge": "latest",
"nuxt-i18n": "^6.28.1",
"v-click-outside": "^3.1.2",
"vue-scrollto": "^2.20.0",
"web3": "^1.7.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.16.5",
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@nuxt/bridge": "npm:@nuxt/bridge-edge",
"@nuxtjs/eslint-config": "^8.0.0",
"@nuxtjs/eslint-module": "^3.0.2",
"@nuxtjs/stylelint-module": "^4.1.0",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-nuxt": "^3.1.0",
"eslint-plugin-vue": "^8.3.0",
"fibers": "^5.0.1",
"husky": "^7.0.4",
"lint-staged": "^12.3.1",
"postcss-html": "^1.3.0",
"prettier": "^2.5.1",
"sass": "^1.49.0",
"sass-loader": "^10",
"stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended-vue": "^1.1.0",
"stylelint-config-standard": "^24.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.1.0"
}
}