-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
67 lines (67 loc) · 1.96 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
{
"name": "OasisScan",
"version": "1.0.0",
"description": "Oasis Scan provides an easy to use and popular Oasis block explorer",
"author": "BitCat",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"tc": "node ./crowdinConverter.js toCrowdin",
"fc": "node ./crowdinConverter.js fromCrowdin",
"precommit": "npm run lint"
},
"config": {
"nuxt": {
"host": "0.0.0.0",
"port": "3000"
}
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.0",
"@nuxtjs/axios": "^5.3.6",
"@nuxtjs/proxy": "^1.3.3",
"@nuxtjs/pwa": "^2.6.0",
"@nuxtjs/style-resources": "^1.2.1",
"bignumber.js": "^9.0.2",
"classnames": "^2.2.6",
"cross-env": "^5.2.0",
"highcharts": "^8.1.2",
"highcharts-vue": "^1.3.5",
"iview": "3.1.5",
"koa": "^2.6.2",
"less": "^3.8.1",
"less-loader": "^4.1.0",
"local-storage": "^2.0.0",
"moment": "^2.26.0",
"nuxt": "^2.4.0",
"qrcodejs2": "^0.0.2",
"vue-clipboard2": "^0.3.1",
"vue-i18n": "^8.11.2",
"vue-json-pretty": "^1.6.3",
"vue2-toast": "^2.1.0"
},
"devDependencies": {
"@nuxtjs/eslint-config": "^0.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.15.1",
"eslint-config-standard": ">=12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-import": ">=2.16.0",
"eslint-plugin-jest": ">=22.3.0",
"eslint-plugin-node": ">=8.0.1",
"eslint-plugin-nuxt": ">=0.4.2",
"eslint-plugin-promise": ">=4.0.1",
"eslint-plugin-standard": ">=4.0.0",
"eslint-plugin-vue": "^5.2.2",
"node-sass": "^4.12.0",
"nodemon": "^1.18.9",
"postcss-px-to-viewport": "^1.1.0",
"sass-loader": "^7.1.0",
"svg-sprite-loader": "^6.0.11",
"xmlreader": "^0.2.3"
}
}