forked from aws-solutions/content-localization-on-aws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.07 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
{
"name": "Media_Insights_Engine",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint --no-fix",
"deploy": "aws s3 sync --acl public-read --profile mie --delete dist/ s3://[your_website_bucket]"
},
"dependencies": {
"aws-amplify": "^3.0.11",
"aws-amplify-vue": "^2.1.1",
"axios": ">=0.21.1",
"bad-words": "^3.0.3",
"chart.js": "^2.9.3",
"core-js": "^2.6.11",
"diff": "^4.0.2",
"jquery": "^3.4.1",
"jwt-decode": "^2.2.0",
"lodash": "^4.17.15",
"number-to-words": "^1.2.4",
"register-service-worker": "^1.6.2",
"video.js": "^6.13.0",
"videojs-flash": "2.1.0",
"videojs-hotkeys": "^0.2.25",
"videojs-markers": "^1.0.1",
"vue": "^2.6.11",
"vue-router": "^2.8.1",
"vue-video-player": "4.0.6",
"vuex": "^3.1.2",
"vuex-persistedstate": "^2.7.1",
"wavesurfer.js": "^3.3.3"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-plugin-pwa": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"babel-eslint": "^10.0.3",
"bootstrap": "^4.4.1",
"bootstrap-vue": "^2.5.0",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"vue-template-compiler": "^2.6.11",
"webpack-subresource-integrity": "^1.3.4"
},
"eslintConfig": {
"root": false,
"env": {
"node": false
},
"extends": [
"plugin:vue/recommended",
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off",
"no-undef": "off",
"vue/require-prop-types": "off",
"vue/attribute-hyphenation": "off",
"vue/valid-v-for": "off",
"vue/max-attributes-per-line": "off",
"vue/html-self-closing": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"eslintIgnore": [
"src/dist/*.js",
"src/dist/min/*.js"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}