-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
130 lines (130 loc) · 2.79 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "OntoPad",
"version": "0.1.0",
"private": true,
"license": "GPLv3",
"repository": {
"type": "git",
"url": "https://github.com/AKSW/OntoPad"
},
"bugs": {
"url": "https://github.com/AKSW/OntoPad/issues"
},
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"lint": "vue-cli-service lint",
"test": "jest"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"@donsi/rdform": "0.0.5",
"axios": "^0.21.1",
"bootstrap-vue": "^2.21.2",
"intro.js": "^2.9.3",
"jquery": "^3.6.0",
"jquery-ui": "^1.12.1",
"jsonld": "^1.8.1",
"n3": "^1.8.1",
"rdf-string": "^1.5.0",
"sparqljs": "^2.2.3",
"streamify-string": "^1.0.1",
"uuid": "^8.3.2",
"vue": "^2.6.12",
"vue-diagrams": "git+https://github.com/white-gecko/vue-diagrams.git#master",
"vue-introjs": "^1.3.2",
"vue-router": "^3.5.1",
"vuex": "^3.6.2"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.13.10",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.1.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^25.0.0",
"eslint": "^6.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"eslint-plugin-vue": "^6.2.2",
"jest": "^25.0.0",
"typescript": "^3.9.9",
"vue-jest": "^4.0.1",
"vue-template-compiler": "^2.6.12",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {
"no-console": "off",
"no-unused-vars": "warn"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
},
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"modules": false
}
]
],
"env": {
"test": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
]
}
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 11",
"not ie_mob <= 11"
]
}