-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathpackage.json
89 lines (89 loc) · 2.29 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
{
"name": "gocrack-ui",
"version": "1.2.0",
"description": "Web UI for GoCrack",
"author": "Christopher Schmitt <chris.schmitt@mandiant.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fireeye/gocrack-ui"
},
"scripts": {
"serve": "export VUE_APP_VERSION=$(git rev-parse HEAD) && vue-cli-service serve",
"build": "export VUE_APP_VERSION=$(git rev-parse HEAD) && vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"@fortawesome/vue-fontawesome": "^0.1.6",
"@sentry/browser": "^5.4.0",
"@sentry/integrations": "^5.4.1",
"axios": "^0.19.0",
"bootstrap-vue": "^2.0.0-rc.22",
"chart.js": "^2.8.0",
"core-js": "^2.6.5",
"jquery": "^3.4.1",
"jwt-decode": "^2.2.0",
"node-sass": "^4.12.0",
"numeral": "^2.0.6",
"sass-loader": "^7.1.0",
"vue": "^2.6.10",
"vue-chartjs": "^3.4.2",
"vue-i18n": "^8.11.2",
"vue-multiselect": "^2.1.6",
"vue-router": "^3.0.6",
"vue-tables-2": "^1.4.70",
"vuelidate": "^0.7.4",
"vuex": "^3.1.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.9.0",
"@vue/cli-plugin-babel": "^3.8.0",
"@vue/cli-plugin-eslint": "^3.8.0",
"@vue/cli-service": "^3.8.0",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/eslint-plugin": "^4.2.0",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^5.0.5",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.0.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.33.0"
},
"babel": {
"presets": [
"@vue/app"
]
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}