This repository has been archived by the owner on Jun 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 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
{
"name": "zilpay.xyz",
"version": "2.0.0",
"description": "A crypto wallet & gateway to Zilliqa blockchain apps",
"title": "ZilPay",
"author": "Rinat",
"private": false,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "cross-env NODE_ENV=production nuxt generate && npm run docs:build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore ."
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"dependencies": {
"@nuxtjs/axios": "^5.12.0",
"@nuxtjs/robots": "^2.4.2",
"@nuxtjs/style-resources": "^1.0.0",
"@unstoppabledomains/resolution": "1.0.0",
"@zilliqa-js/crypto": "^2.1.0",
"cross-env": "^7.0.2",
"express": "^4.17.1",
"fs": "^0.0.1-security",
"js-sha256": "^0.9.0",
"micromodal": "^0.4.6",
"nuxt": "^2.13.3",
"vue-bem-cn": "^1.1.1",
"vue-codemirror": "^4.0.6",
"vue-cookieconsent-component": "^1.2.0",
"vue-js-toggle-button": "^1.3.3",
"vue-json-tree-view": "^2.1.6",
"vue-tabs-component": "^1.5.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^3.0.0",
"@nuxtjs/eslint-module": "^2.0.0",
"babel-eslint": "^10.1.0",
"eslint": "^7.4.0",
"eslint-plugin-nuxt": ">=1.0.0",
"node-sass": "^4.14.1",
"nodemon": "^2.0.4",
"sass-loader": "^9.0.2",
"vuepress": "^1.5.2"
}
}