forked from monarch-initiative/monarch-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.55 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
{
"name": "monarch-ui",
"version": "0.0.20",
"private": true,
"scripts": {
"dev": "npm run serve",
"serve": "node_modules/.bin/vue-cli-service serve --port 8081",
"build": "node_modules/.bin/vue-cli-service build && cp dist/index.html dist/404.html",
"test": "npm run test:unit && npm run test:e2e",
"lint": "node_modules/.bin/vue-cli-service lint --no-fix",
"analyze": "BUILD=analyze node_modules/.bin/vue-cli-service build",
"buildandserve": "npm run build && (cd dist/ && ln -s . monarch-ui) && http-server -c-1 dist/",
"clean": "rm -rf dist/",
"ghpublish": "./publish.sh",
"lintfix": "node_modules/.bin/vue-cli-service lint --fix",
"rmdsstore": "find . -name '.DS_Store' -print -delete",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "node_modules/.bin/vue-cli-service test:unit --require tests/unit/pre-setup.js",
"ui": "node_modules/.bin/vue ui"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"axios": "^0.19.0",
"babel-polyfill": "^6.26.0",
"bootstrap": "4.3.1",
"bootstrap-vue": "^2.0.0-rc.26",
"d3": "^5.9.2",
"d3-axis": "^1.0.12",
"d3-scale": "^3.0.0",
"d3-selection": "^1.4.0",
"file-saver": "^2.0.2",
"font-awesome": "^4.7.0",
"genomefeaturecomponent": "^0.2.7",
"js-yaml": "^3.13.1",
"jsdom-global": "^3.0.2",
"lodash": "^4.17.14",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.2.4",
"phenogrid": "^1.4.0",
"register-service-worker": "^1.6.2",
"sanitize-html": "^1.20.1",
"underscore": "^1.9.1",
"v-click-outside": "^2.1.3",
"vue": "^2.6.10",
"vue-form-wizard": "^0.8.4",
"vue-router": "^3.0.6",
"vuelidate": "^0.7.4"
},
"devDependencies": {
"@vue/cli": "^3.8.2",
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-e2e-nightwatch": "^3.9.2",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-plugin-unit-mocha": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-airbnb": "^4.0.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/test-utils": "^1.0.0-beta.29",
"chai": "^4.2.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-import-resolver-webpack": "^0.11.1",
"eslint-plugin-import": "^2.17.3",
"geckodriver": "^1.16.2",
"html-loader": "^0.5.5",
"http-server": "^0.11.1",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"sinon": "^7.3.2",
"vue-cli-plugin-webpack-bundle-analyzer": "^1.3.0",
"vue-markdown-loader": "^2.4.1",
"vue-template-compiler": "^2.6.10"
}
}