-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
68 lines (68 loc) · 1.87 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
{
"name": "banana_split",
"license": "GPL-3.0",
"description": "Shamir's Secret Sharing for people with friends",
"contributors": [
"Kirill Pimenov <[email protected]>"
],
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"deploy": "gh-pages -b gh-pages -d dist -a",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "playwright test"
},
"dependencies": {
"base64-js": "^1.3.0",
"ipfs-only-hash": "^4.0.0",
"scryptsy": "^2.0.0",
"secrets.js-grempe": "^1.1.0",
"tweetnacl": "^1.0.0",
"typescript": "^4.4.3",
"vue": "^2.5.17",
"vue-qrcode-reader": "^1.3.1",
"vue-qriously": "^1.1.1",
"vue-router": "^3.0.1"
},
"devDependencies": {
"@playwright/test": "^1.16.3",
"@types/fluent-ffmpeg": "^2.1.19",
"@types/jest": "^26.0.24",
"@typescript-eslint/parser": "^4.31.2",
"@vue/cli-plugin-eslint": "^4.5.15",
"@vue/cli-plugin-typescript": "^4.5.15",
"@vue/cli-plugin-unit-jest": "^4.5.15",
"@vue/cli-service": "^4.5.15",
"@vue/test-utils": "^1.0.0-beta.20",
"eslint": "^5.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-vue": "^6.2.2",
"fast-text-encoding": "^1.0.0",
"fluent-ffmpeg": "^2.1.2",
"gh-pages": "^5.0.0",
"html-webpack-inline-source-plugin": "1.0.0-beta.2",
"html-webpack-plugin": "4.0.0-beta.4",
"jest-junit": "^6.0.1",
"playwright": "^1.16.3",
"ts-jest": "^26.4.4",
"vue-template-compiler": "^2.5.17",
"vuetype": "^0.3.2"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"jest-junit": {
"outputDirectory": "test-results/jest",
"oputputName": "results.xml"
}
}