-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.14 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
{
"name": "dashboard",
"description": "A Dashboard for showing information about a Plex, Tautulli, Sonarr and Radarr Media server",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "npm-run-all -s build_dev open dev",
"dev": "npm-run-all -p -r serve watch",
"serve": "php -S localhost:80 -t dist/",
"watch": "npm-watch build_dev",
"open": "opn http://localhost/",
"_serve": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service serve",
"build_dev": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build --mode development --color",
"build": "SET NODE_OPTIONS=--openssl-legacy-provider && vue-cli-service build",
"lint": "vue-cli-service lint"
},
"watch": {
"build_dev": {
"patterns": [
"src",
"public"
],
"extensions": "js,json,vue,php,html",
"quiet": true,
"delay": 0,
"runOnChangeOnly": true
}
},
"dependencies": {
"vue": "^2.6.11",
"vue-meta": "^1.6.0",
"vue-moment": "^4.0.0",
"vue-router": "^3.1.3",
"vuex": "^3.1.2",
"vuex-persistedstate": "^2.7.0"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^4.1.1",
"@vue/eslint-config-standard": "^4.0.0",
"@vue/runtime-dom": "^3.2.45",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^5.2.3",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.6.0",
"opn-cli": "^4.1.0",
"sass": "^1.23.7",
"sass-loader": "^8.0.0",
"vue-template-compiler": "^2.6.11"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/standard"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}