forked from OpenSILEX/opensilex-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.74 KB
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
{
"name": "opensilex-vue-extension",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --mode production --target lib src/index.ts",
"lint": "vue-cli-service lint",
"check:outdated": "yarn outdated || cd ."
},
"dependencies": {
"core-js": "3.6.1",
"inversify": "^5.0.1",
"node-fetch": "^2.6.0",
"reflect-metadata": "0.1.13",
"vue": "2.6.11",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.3.0",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"whatwg-fetch": "~3.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.14.0",
"@typescript-eslint/parser": "2.14.0",
"@vue/cli-plugin-babel": "4.1.2",
"@vue/cli-plugin-eslint": "4.1.2",
"@vue/cli-plugin-router": "4.1.2",
"@vue/cli-plugin-typescript": "4.1.2",
"@vue/cli-plugin-vuex": "4.1.2",
"@vue/cli-service": "4.1.2",
"@vue/eslint-config-typescript": "^5.0.1",
"eslint": "6.8.0",
"eslint-plugin-vue": "6.1.2",
"sass": "1.24.2",
"sass-loader": "^8.0.0",
"typescript": "3.7.4",
"terser-webpack-plugin": "2.3.2",
"vue-template-compiler": "2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended",
"@vue/typescript"
],
"rules": {},
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}