-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
100 lines (100 loc) · 2.93 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
{
"name": "adele-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 9090",
"build": "vue-cli-service build",
"build-cutter": "vue-cli-service build --inline-vue --target lib --name textCutter ./src/components/editors/TextCutterEditor.vue && cp ./dist/textCutter.css ./text-cutter/ && cp ./dist/textCutter.umd.min.js ./text-cutter/",
"deploy-cutter": "cp ./dist/textCutter.css ./text-cutter/ && cp ./dist/textCutter.umd.min.js ./text-cutter/",
"lint": "vue-cli-service lint",
"test": "jest --no-cache"
},
"dependencies": {
"@blueprintjs/core": "^3.31.0",
"@blueprintjs/icons": "^3.20.1",
"@fortawesome/fontawesome-svg-core": "^1.2.13",
"@fortawesome/free-regular-svg-icons": "^5.7.0",
"@fortawesome/free-solid-svg-icons": "^5.7.0",
"@fortawesome/vue-fontawesome": "^0.1.7",
"acorn": "^7.4.0",
"axios": "^0.21.1",
"axios-auth-refresh": "^1.0.7",
"buefy": "^0.9.3",
"bulma": "^0.9.1",
"bulma-checkradio": "^1.1.1",
"bulma-divider": "^0.2.0",
"bulma-steps": "^2.2.1",
"bulma-tooltip": "^3.0.2",
"lodash": "^4.17.20",
"mirador": "3.2.0",
"mirador-annotations": "^0.3.0",
"mutationobserver-shim": "^0.3.3",
"quill": "^1.3.7",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"vue": "^2.6.10",
"vue-click-outside": "^1.0.7",
"vue-inputmask": "^0.2.1",
"vue-router": "^3.1.3",
"vuedraggable": "^2.24.3",
"vuex": "^3.1.1"
},
"devDependencies": {
"@babel/preset-env": "^7.6.3",
"@vue/cli-plugin-babel": "^4.0.5",
"@vue/cli-plugin-eslint": "^4.0.5",
"@vue/cli-service": "^4.5.9",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"eslint": "^6.7.1",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"faker": "^4.1.0",
"material-design-icons-iconfont": "^4.0.5",
"regenerator-runtime": "^0.13.3",
"sass": "^1.39.2",
"sass-loader": "^10",
"vue-loader": "^15.7.1",
"vue-server-renderer": "^2.6.12",
"vue-svg-inline-loader": "^1.4.3",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"plugins": [],
"extends": [
"plugin:vue/recommended",
"eslint:recommended"
],
"rules": {
"no-mixed-spaces-and-tabs": 0,
"no-unused-vars": 0,
"no-console": 0,
"no-restricted-syntax": [
"error",
{
"selector": "CallExpression[callee.object.name='console'][callee.property.name!=/^(log|warn|error|info|trace)$/]",
"message": "Unexpected property on console object was called"
}
]
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}