-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.55 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.55 KB
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
{
"name": "cgpay",
"description": "Payment app for the Common Good democratic economic system",
"repository": {
"type": "git",
"url": "https://github.com/common-good/cg-pay-pwa"
},
"private": true,
"type": "module",
"browserslist": [
"defaults and supports es6-module",
"maintained node versions"
],
"scripts": {
"build": "mode=production vite build",
"dev": "mode=dev vite dev",
"dev:testing": "mode=testing vite dev",
"preview": "mode=production vite build && mode=production vite preview",
"watch": "mode=dev vitest",
"utest": "mode=dev vitest run",
"test": "cucumber-js -p default -c ./tests/cucumber.js --exit --tags "
},
"devDependencies": {
"@cucumber/cucumber": "^9.0.0",
"@sveltejs/vite-plugin-svelte": "^2.0.2",
"@testing-library/svelte": "^3.2.1",
"@vitejs/plugin-legacy": "^4.0.3",
"canvas": "^2.11.0",
"chai": "^4.3.7",
"fkill": "^8.1.0",
"html5-qrcode": "^2.2.1",
"jsdom": "^20.0.0",
"puppeteer": "^19.7.5",
"query-string": "^7.1.1",
"stylus": "^0.55.0",
"svelte": "^3.59.0",
"svelte-focus-trap": "^1.2.0",
"svelte-inline-svg": "^1.2.0",
"svelte-preprocess": "^4.10.7",
"svelte-router-spa": "^6.0.3",
"terser": "^5.17.2",
"vite": "^4.1.0",
"vite-imagetools": "^4.0.8",
"vite-plugin-pwa": "^0.14.4",
"vitest": "^0.23.4"
},
"dependencies": {
"b64-to-blob": "^1.2.19",
"buffer": "^6.0.3",
"js-sha256": "^0.9.0",
"qrcode": "^1.5.1",
"svelte-material-icons": "^3.0.4",
"svelte-select": "^4.3.1"
}
}