forked from zarf-dev/zarf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "zarf-ui",
"private": true,
"version": "0.0.1",
"type": "module",
"scripts": {
"dev": "hack/ui-dev.sh",
"build": "vite build",
"test": "playwright test -x --reporter github,html",
"test:pre-init": "playwright test -x --reporter github,html --grep @pre-init",
"test:init": "playwright test -x --reporter github,html --grep @init",
"test:post-init": "playwright test -x --reporter github,html --grep @post-init",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
},
"nodemonConfig": {
"delay": 5000,
"watch": [
"src"
],
"signal": "SIGKILL",
"extensions": [
"go"
]
},
"dependencies": {
"@defense-unicorns/unicorn-ui": "0.0.32",
"@fontsource/roboto": "4.5.8",
"@material/card": "14.0.0",
"@material/data-table": "14.0.0",
"@material/layout-grid": "14.0.0",
"@material/linear-progress": "14.0.0",
"@material/theme": "14.0.0",
"material-symbols": "0.4.2",
"prismjs": "1.29.0",
"sanitize.css": "13.0.0",
"yaml": "2.2.1"
},
"devDependencies": {
"@playwright/test": "1.29.1",
"@sveltejs/adapter-static": "1.0.4",
"@sveltejs/kit": "1.2.2",
"@sveltejs/package": "1.0.2",
"@testing-library/svelte": "3.2.2",
"@tsconfig/svelte": "3.0.0",
"@types/prismjs": "1.26.0",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"concurrently": "7.6.0",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-svelte3": "4.0.0",
"nodemon": "2.0.20",
"playwright": "1.29.1",
"prettier": "2.8.3",
"prettier-plugin-svelte": "2.9.0",
"quicktype": "^17.0.0",
"sass": "1.57.1",
"svelte": "3.55.1",
"svelte-check": "3.0.2",
"svelte-preprocess": "5.0.0",
"tslib": "2.4.1",
"typescript": "4.9.4",
"vite": "4.0.4"
}
}