-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.51 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "payment-voucher",
"version": "0.0.1",
"license": "UNLICENSED",
"scripts": {
"build": "npm run build:contract && npm run build:web",
"build:contract": "node contract/compile.js",
"build:contract:debug": "node contract/compile.js --debug",
"build:web": "node copy-dev-account.js && vue-cli-service build",
"dev:deploy:contract": "near dev-deploy",
"deploy:contract": "near deploy",
"deploy:pages": "gh-pages -d dist/",
"deploy": "npm run build && npm run deploy:contract && npm run deploy:pages",
"prestart": "npm run build:contract:debug && npm run dev:deploy:contract",
"start": "echo The app is starting! It will automatically open in your browser when ready && npm run serve",
"dev": "nodemon --watch contract/src -e rs --exec \"npm run start\"",
"test:web": "vue-cli-service test:unit",
"test:contract": "cd contract && cargo test -- --nocapture",
"test": "npm run build:contract:debug && cd contract && cargo test -- --nocapture",
"serve": "node copy-dev-account.js && vue-cli-service serve",
"lint": "eslint . --ext .js --ext .vue --fix"
},
"dependencies": {
"big.js": "^6.1.1",
"bootstrap": "^5.1.3",
"bootstrap-vue": "^2.21.2",
"core-js": "~3.12.1",
"crypto-js": "^4.1.1",
"near-api-js": "~0.43.1",
"process": "^0.11.10",
"qrcode.vue": "^1.7.0",
"vue": "~2.6.11"
},
"devDependencies": {
"@vue/cli-plugin-babel": "~4.5.8",
"@vue/cli-plugin-eslint": "~4.5.8",
"@vue/cli-plugin-unit-jest": "~4.5.4",
"@vue/cli-service": "~4.5.8",
"@vue/test-utils": "~1.2.0",
"env-cmd": "~10.1.0",
"eslint": "~7.26.0",
"eslint-plugin-vue": "~7.9.0",
"gh-pages": "~3.1.0",
"near-cli": "~2.1.1",
"nodemon": "~2.0.4",
"shelljs": "~0.8.4",
"vue-template-compiler": "~2.6.11"
},
"eslintConfig": {
"ignorePatterns": [
"src/config.js",
"/tests/*.spec.js",
"copy-dev-account.js"
],
"env": {
"browser": true,
"es2020": true
},
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"parserOptions": {
"ecmaVersion": 2017,
"sourceType": "module"
},
"plugins": [
"vue"
],
"rules": {
"indent": [
2,
2
],
"quotes": [
"off",
"double"
],
"vue/html-indent": [
"error",
2,
{
"alignAttributesVertically": true
}
]
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
]
}