forked from jddamore/IPSviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.49 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
{
"name": "ipsviewer",
"version": "0.0.1",
"description": "IPS Viewer",
"author": {
"name": "More Informatics, Inc.",
"email": "johnd@moreinformatics.com"
},
"scripts": {
"start": "serve build/",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"debug": "nodemon app -e html,js",
"test": "mocha test/test.js"
},
"dependencies": {
"express": "^4.17.1",
"request": "^2.88.2",
"base64url": "^3.0.1",
"jose": "^4.11.4",
"sveltestrap": "^5.10.0"
},
"devDependencies": {
"chai": "^4.3.7",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"karma-mocha": "^2.0.1",
"karma-requirejs": "^1.1.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.12",
"@sveltejs/adapter-auto": "^2.0.0",
"@sveltejs/adapter-static": "^2.0.0",
"@sveltejs/kit": "^1.5.0",
"@types/fhir": "^0.0.41",
"@types/node": "^20.8.7",
"prettier": "^2.8.0",
"prettier-plugin-svelte": "^2.8.1",
"svelte": "^3.55.1",
"svelte-check": "^3.0.1",
"tslib": "^2.4.1",
"typescript": "^4.9.3",
"vite": "^4.0.0"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/jddamore/IPSviewer"
},
"snyk": true
}