-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "secretdrop.io",
"version": "1.0.0",
"description": "Public key encryption for everyone at https://secretdrop.io",
"repository": {
"type": "git",
"url": "git+https://github.com/Calvin-LL/secretdrop.io.git"
},
"author": "Calvin Liang",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Calvin-LL/secretdrop.io/issues"
},
"homepage": "https://github.com/Calvin-LL/secretdrop.io#readme",
"type": "module",
"scripts": {
"test": "vitest run && playwright test",
"test:unit": "vitest",
"test:e2e": "playwright test",
"dev": "astro dev",
"start": "astro dev",
"build": "astro check && vue-tsc --noEmit && astro build",
"preview": "astro preview",
"check": "astro check && vue-tsc --noEmit",
"astro": "astro"
},
"dependencies": {
"@astrojs/vue": "^3.0.0",
"@fontsource/roboto": "^5.0.8",
"@fontsource/roboto-mono": "^5.0.8",
"@fontsource/roboto-slab": "^5.0.11",
"astro": "^3.0.8",
"elliptic": "^6.5.4",
"file-icon-vectors": "^1.0.0",
"file-saver": "^2.0.5",
"file-selector": "^0.6.0",
"filesize.js": "^2.0.0",
"lzutf8": "^0.6.3",
"material-icons": "^1.13.10",
"mime": "^3.0.0",
"uuid": "^9.0.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@astrojs/check": "^0.2.0",
"@playwright/test": "^1.37.1",
"@types/elliptic": "^6.4.14",
"@types/file-saver": "^2.0.5",
"@types/mime": "^3.0.1",
"@types/uuid": "^9.0.3",
"prettier": "^3.0.3",
"prettier-plugin-astro": "^0.12.0",
"sass": "^1.66.1",
"typescript": "^5.2.2",
"vitest": "^0.34.3",
"vue-tsc": "^1.8.10"
}
}