This repository has been archived by the owner on Aug 20, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
77 lines (77 loc) · 1.92 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
{
"name": "cfb-web",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --host localhost",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"docker": "docker build . -t vue-app && docker run -d -p 3000:80 vue-app"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.6",
"@fortawesome/free-brands-svg-icons": "^5.6.3",
"@fortawesome/free-solid-svg-icons": "^5.4.1",
"@fortawesome/vue-fontawesome": "^0.1.1",
"@saeris/vue-spinners": "^1.0.8",
"@sentry/browser": "^5.9.0",
"@sentry/integrations": "^5.8.0",
"@vue/component-compiler-utils": "^3.2.0",
"ajv": "^6.6.2",
"axios": "^0.21.1",
"bootstrap-vue": "^2.0.4",
"chart.js": "^2.7.3",
"vue": "^2.6.11",
"vue-analytics": "^5.16.1",
"vue-chartjs": "^3.4.0",
"vue-json-csv": "^1.2.11",
"vue-router": "^3.4.3"
},
"devDependencies": {
"@babel/polyfill": "^7.0.0-beta.53",
"@vue/cli-plugin-babel": "^3.2.0",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^4.5.4",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"dotenv-webpack": "^1.5.7",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0-0",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"vue-cli-plugin-axios": "0.0.4",
"vue-cli-plugin-bootstrap-vue": "^0.6.0",
"vue-cli-plugin-docker-nginx": "^1.0.1",
"vue-cli-plugin-fontawesome": "^0.1.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {
"indent": [
0,
4
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}