-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 3.18 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
{
"name": "aristotle-labs",
"version": "1.0.0",
"description": "The home of Aristotle Cloud Services Australia's laboratory code",
"main": "index.js",
"private": true,
"scripts": {
"serve": "webpack-dev-server --config webpack.dev.js --hot",
"build:dev": "webpack --config webpack.dev.js --watch",
"build": "webpack --config webpack.prod.js",
"lint": "eslint --ext .js,.vue ./src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Aristotle-Metadata-Enterprises/aristotle-labs"
},
"author": "ACSA <[email protected]> (https://aristotlemetadata.com)",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/Aristotle-Metadata-Enterprises/aristotle-labs/issues"
},
"homepage": "https://github.com/Aristotle-Metadata-Enterprises/aristotle-labs#readme",
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-loader": "^8.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.2.2",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"license-banner-webpack-plugin": "^2.2.0",
"mini-css-extract-plugin": "^0.9.0",
"style-loader": "^1.3.0",
"svg-inline-loader": "^0.8.2",
"url-loader": "^4.1.0",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@aristotle-metadata-enterprises/aristotle_tooltip": "^1.2.1",
"@fortawesome/fontawesome-free": "^5.15.1",
"axios": "^0.19.2",
"bootstrap": "^4.5.2",
"chart.js": "^2.9.3",
"color-scheme": "^1.0.1",
"core-js": "^3.6.5",
"country-iso-3-to-2": "^1.1.0",
"d3": "^5.16.0",
"dagre-d3": "^0.6.4",
"detect-browser": "^5.2.0",
"gradstop": "^2.2.3",
"jquery": "^3.5.1",
"popper.js": "^1.16.1",
"regenerator-runtime": "^0.13.7",
"vue": "^2.6.12",
"vue-chartjs": "^3.5.1",
"vue-google-charts": "^0.3.3",
"vue-router": "^3.4.6",
"vue-sanitize": "^0.2.0",
"vue-slider-component": "^3.2.5"
},
"browserslist": [
"last 2 versions",
"not dead"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"useBuiltIns": "entry",
"corejs": "3",
"modules": false
}
]
]
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
],
"env": {
"es6": true,
"browser": true
},
"rules": {
"vue/html-indent": "off",
"vue/max-attributes-per-line": "off",
"vue/attributes-order": "off",
"vue/order-in-components": "off"
}
}
}