-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
72 lines (72 loc) · 2.55 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
{
"name": "paper-wallet",
"version": "3.2.0",
"private": true,
"scripts": {
"build": "vue-cli-service build",
"lint": "vue-cli-service lint && prettier --write \"./*.{ts,js,json,md,vue}\" \"./src/**/*.{ts,js,json,md,vue}\" \"./tests/**/*.{ts,js,json,md,vue}\"",
"serve": "vue-cli-service serve",
"task:deploy": "cross-env-shell ./scripts/deploy.sh",
"task:deploy:workflow": "cross-env-shell ./scripts/deploy-via-workflow.sh",
"task:release": "cross-env-shell ./scripts/release.sh",
"test:e2e": "vue-cli-service test:e2e",
"test:e2e:ci": "vue-cli-service test:e2e --headless",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.2",
"animate.css": "^3.0.0",
"bip39": "^3.0.2",
"bs58check": "^2.1.2",
"buffer": "^5.6.0",
"core-js": "^3.6.5",
"html2canvas": "^1.0.0-rc.5",
"more-entropy": "^0.0.7",
"register-service-worker": "^1.7.1",
"ripemd160": "^2.0.2",
"secp256k1": "^4.0.1",
"simple-sha256": "^1.0.0",
"tailwindcss": "^1.4.6",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-property-decorator": "^9.0.0",
"vue-router": "^3.1.6",
"vue-simple-spinner": "^1.2.10",
"wif": "^2.0.6"
},
"devDependencies": {
"@fullhuman/postcss-purgecss": "^2.2.0",
"@types/babel-core": "6.25.6",
"@types/bytebuffer": "^5.0.41",
"@types/core-js": "^2.5.3",
"@types/jest": "^26.0.0",
"@types/node": "^13.13.5",
"@types/prettier": "^2.0.0",
"@types/ripemd160": "^2.0.0",
"@types/secp256k1": "^4.0.1",
"@types/stylus": "^0.48.32",
"@types/wif": "^2.0.1",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-e2e-cypress": "^4.3.1",
"@vue/cli-plugin-pwa": "^4.3.1",
"@vue/cli-plugin-typescript": "^4.3.1",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/test-utils": "1.0.3",
"babel-core": "7.0.0-bridge.0",
"codecov": "^3.6.5",
"cross-env": "^7.0.2",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"purgecss": "^2.2.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"ts-jest": "^26.0.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3",
"vue-template-compiler": "^2.6.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
}
}