-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
122 lines (122 loc) · 3.68 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "paediatric_drugs",
"version": "0.1.0",
"private": false,
"description": "client based drug calculator",
"author": "Brent McSharry",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit tests/unit/**/*.spec.ts",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint --fix",
"build-modern": "vue-cli-service build --modern",
"build-staging": "vue-cli-service build --mode staging",
"gh-pages-deploy": "node scripts/gh-pages-deploy.mjs",
"storybook:build": "vue-cli-service storybook:build -c config/storybook",
"storybook:serve": "vue-cli-service storybook:serve -p 6006 -c config/storybook"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "~1.2.36",
"@fortawesome/free-solid-svg-icons": "~5.15.4",
"@fortawesome/vue-fontawesome": "~2.0.6",
"bootstrap": "^4.6.1",
"bootstrap-vue": "^2.21.2",
"core-js": "^3.21.1",
"dexie": "^3.2.1",
"downloadjs": "^1.4.7",
"inversify": "^5.1.1",
"katex": "^0.15.2",
"lodash.debounce": "^4.0.8",
"reflect-metadata": "^0.1.13",
"register-service-worker": "^1.7.2",
"vee-validate": "^3.4.14",
"vue": "^2.6.14",
"vue-class-component": "^7.2.6",
"vue-katex": "https://github.com/lucpotage/vue-katex",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.3",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@fluffy-spoon/substitute": "^1.208.0",
"@sinonjs/fake-timers": "6.0.1",
"@storybook/addon-actions": "^5.3.21",
"@storybook/addon-knobs": "^5.3.21",
"@storybook/addon-links": "^5.3.21",
"@storybook/addon-notes": "^5.3.21",
"@storybook/vue": "^5.3.21",
"@types/chai": "^4.3.0",
"@types/chai-almost": "^1.0.1",
"@types/downloadjs": "^1.4.3",
"@types/lodash.debounce": "^4.0.6",
"@types/lolex": "^5.1.2",
"@types/mocha": "^7.0.2",
"@types/node": "^14.18.12",
"@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"@vue/cli-plugin-babel": "~4.5.15",
"@vue/cli-plugin-e2e-nightwatch": "~4.5.15",
"@vue/cli-plugin-eslint": "~4.5.15",
"@vue/cli-plugin-pwa": "~4.5.15",
"@vue/cli-plugin-router": "~4.5.15",
"@vue/cli-plugin-typescript": "~4.5.15",
"@vue/cli-plugin-unit-mocha": "~4.5.15",
"@vue/cli-service": "~4.5.15",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^7.0.0",
"@vue/test-utils": "1.3.0",
"chai": "^4.3.6",
"chai-almost": "^1.0.1",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"execa": "^4.1.0",
"fake-indexeddb": "^3.1.7",
"lint-staged": "^9.5.0",
"mocha": "^8.4.0",
"pako": "^1.0.11",
"pdf-lib": "1.17.1",
"rimraf": "^3.0.2",
"sass": "^1.49.9",
"sass-loader": "^8.0.2",
"typescript": "~4.5.5",
"vue-cli-plugin-storybook": "~2.1.0",
"vue-template-compiler": "^2.6.14"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
">= 0.5% and last 2 versions"
],
"bugs": {
"url": "https://github.com/mcshaz/PicuDrugsClient/issues"
},
"homepage": "https://github.com/mcshaz/PicuDrugsClient",
"keywords": [
"drug",
"infusion",
"calculator",
"weight",
"obese",
"resus",
"resuscitation"
],
"license": "MIT",
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
}
}