-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
109 lines (109 loc) · 2.81 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
102
103
104
105
106
107
108
109
{
"name": "Identity-Management",
"version": "2.0.0",
"private": true,
"description": "Enduser UI",
"author": "jason.browne <jason.browne@forgerock.com>",
"scripts": {
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"dev": "vue-cli-service serve",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'",
"find-copyright-problems": "echo 'Listing all files which do not contain a valid copyright header for this year - some files do not qualify \n' && cd src && git grep -L --word-regexp \"Copyright (c) $(date +\"%Y\")\"",
"preinstall": "npx force-resolutions --silent"
},
"dependencies": {
"axios": "1.7.4",
"babel-loader": "9.2.1",
"bootstrap": "4.3.1",
"bootstrap-vue": "2.21.2",
"core-js": "3.6.5",
"es6-promise": "4.2.4",
"lodash": "4.17.21",
"moment": "2.29.4",
"prismjs": "1.27.0",
"sanitize-html": "2.13.1",
"sass": "1.69.4",
"vee-validate": "3.3.2",
"vue": "2.6.10",
"vue-i18n": "8.0.0",
"vue-multiselect": "2.1.6",
"vue-notification": "1.3.20",
"vue-prism-editor": "0.6.1",
"vue-router": "3.0.1",
"vue-spinner": "1.0.3"
},
"devDependencies": {
"@babel/polyfill": "7.4.4",
"@fortawesome/fontawesome-free": "5.9.0",
"@vue/cli-plugin-babel": "4.5.8",
"@vue/cli-plugin-eslint": "4.5.8",
"@vue/cli-plugin-unit-mocha": "4.5.8",
"@vue/cli-service": "4.5.13",
"@vue/eslint-config-standard": "4.0.0",
"@vue/test-utils": "1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.1",
"chai": "4.1.2",
"cross-env": "5.0.1",
"elliptic": "6.5.3",
"eslint": "5.8.0",
"eslint-plugin-vue": "5.0.0",
"flush-promises": "1.0.2",
"force-resolutions": "1.0.10",
"moxios": "0.4.0 ",
"mutationobserver-shim": "0.3.3",
"popper.js": "1.15.0",
"portal-vue": "2.1.4",
"sass-loader": "7.1.0",
"sinon": "7.3.2",
"style-resources-loader": "1.2.1",
"vue-cli-plugin-i18n": "0.6.0",
"vue-template-compiler": "2.6.10"
},
"resolutions": {
"ansi-regex": "5.0.1",
"braces": "3.0.3",
"follow-redirects": "1.15.9"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {
"arrow-parens": 0,
"semi": [
2,
"always"
],
"indent": [
"error",
4
],
"one-var": [
"error",
"always"
],
"generator-star-spacing": 0
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie < 11"
]
}