This repository has been archived by the owner on Jun 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.99 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
{
"name": "corpsum",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 3000",
"build": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint",
"test": "echo \"we don't test frontends, our users do\"",
"start": "cd server && npm install --only=production && node server.js"
},
"engines": {
"node": "14.x"
},
"dependencies": {
"@johmun/vue-tags-input": "^2.1.0",
"axios": "^0.21.1",
"bootstrap": "^4.4.0",
"bootstrap-vue": "^2.1.0",
"d3": "^5.15.0",
"d3-array": "^2.4.0",
"d3-axis": "^1.0.12",
"d3-format": "^1.4.3",
"d3-scale": "^3.2.1",
"d3-selection": "^1.4.1",
"d3-shape": "^1.3.7",
"d3-transition": "^1.3.2",
"highcharts": "^7.2.1",
"highcharts-vue": "^1.3.5",
"isotope-layout": "^3.0.6",
"packery": "^2.1.2",
"vue": "^2.6.10",
"vue-feather-icons": "^5.0.0",
"vue-js-toggle-button": "^1.3.3",
"vue-multiselect": "^2.1.6",
"vue-router": "^3.1.3",
"vue-text-highlight": "^2.0.10",
"vue-tour": "^1.1.0",
"vuex": "^3.1.2"
},
"devDependencies": {
"@vue/cli-plugin-eslint": "^3.6.0",
"@vue/cli-service": "^3.6.0",
"@vue/eslint-config-airbnb": "^5.0.0",
"babel-eslint": "^10.0.3",
"compression-webpack-plugin": "^3.0.0",
"eslint": "^6.7.0",
"eslint-config-airbnb": "^18.0.0",
"eslint-plugin-vue": "^6.0.0",
"express-basic-auth": "^1.2.0",
"node-sass": "^4.14.1",
"sass-loader": "^7.3.1",
"vue-template-compiler": "^2.6.0",
"webpack-bundle-analyzer": "^3.6.0"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/airbnb"
],
"rules": {
"no-console": "off",
"max-len": 0
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}