-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "nuts-demo-ehr",
"version": "1.0.0-alpha",
"description": "A demo electronic health record system that interfaces with the Nuts node",
"private": true,
"scripts": {
"gen-api": "npx openapicmd read --strip openapi_client_axios --format json api/api.yaml > web/src/plugins/openapi-runtime.json",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "NODE_ENV=production webpack --mode=production",
"watch": "webpack --mode=development --watch",
"lint": "eslint --ext .js,.vue web/src --fix"
},
"repository": {
"type": "git",
"url": "github.com/nuts-foundation/nuts-demo-ehr"
},
"author": "Steven van der Vegt",
"license": "ISC",
"devDependencies": {
"@fullhuman/postcss-purgecss": "^5.0.0",
"@vue/compiler-sfc": "^3.3.2",
"autoprefixer": "^10.4.13",
"css-loader": "^6.10.0",
"eslint": "^8.28.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.7.0",
"html-webpack-plugin": "^5.5.3",
"postcss": "^8.4.24",
"postcss-loader": "^5.2.0",
"purgecss-webpack-plugin": "^4.0.3",
"style-loader": "^2.0.0",
"tailwindcss": "^3.3.3",
"vue-loader": "^17.0.0",
"vue-style-loader": "^4.1.3",
"webpack": "^5.90.1",
"webpack-cli": "^4.6.0"
},
"dependencies": {
"axios": "^1.7.4",
"http": "^0.0.1-security",
"https": "^1.0.0",
"openapi-client-axios": "^7.5.4",
"url": "^0.11.0",
"util": "^0.12.4",
"vue": "^3.3.7",
"vue-router": "^4.0.12",
"vuex": "^4.1.0"
}
}