forked from WFCD/warframe-hub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 2.95 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
{
"name": "hub-vue",
"version": "0.1.0",
"private": true,
"description": "Utility page to check current warframe status",
"author": "Warframe Community Developers",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"start": "node ./server.js",
"updateWorldstate": "node ./src/tools/initialWorldstateUpdater.js"
},
"dependencies": {
"express": "^4.17.1"
},
"devDependencies": {
"@fortawesome/fontawesome-free": "5.8.2",
"@sentry/browser": "^5.30.0",
"@sentry/integrations": "^5.30.0",
"@types/node-fetch": "^2.5.8",
"@vue/cli-plugin-babel": "^4.5.11",
"@vue/cli-plugin-eslint": "^4.5.11",
"@vue/cli-plugin-pwa": "^4.5.11",
"@vue/cli-plugin-router": "^4.5.11",
"@vue/cli-plugin-vuex": "^4.5.11",
"@vue/cli-service": "^4.5.11",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.0.3",
"bootstrap-vue": "^2.21.2",
"core-js": "^3.9.1",
"css-loader": "^3.6.0",
"dayjs": "^1.10.4",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^6.1.2",
"image-webpack-loader": "^6.0.0",
"leaflet": "1.3.1",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1",
"prettier": "^2.2.1",
"register-service-worker": "^1.7.2",
"vue": "^2.6.12",
"vue-i18n": "^8.23.0",
"vue-matomo": "^3.14.0-0",
"vue-mobile-detection": "^1.0.0",
"vue-native-notification": "^1.1.1",
"vue-notification": "^1.3.20",
"vue-packery-plugin": "^1.4.8",
"vue-router": "^3.5.1",
"vue-template-compiler": "^2.6.12",
"vue2-circle-progress": "^1.2.3",
"vue2-leaflet": "^1.2.3",
"vuex": "^3.6.2",
"vuex-persistedstate": "^3.2.0"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"engines": {
"node": ">=10.13.0",
"npm": ">=6.4.1"
},
"heroku-run-build-script": true,
"prettier": {
"singleQuote": true,
"quoteProps": "as-needed",
"trailingComma": "es5",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"arrowParens": "always",
"printWidth": 120
},
"eslintIgnore": [
"src/assets/**.*"
],
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"plugin:prettier/recommended",
"eslint:recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"vue/html-indent": 1,
"semi": 1,
"arrow-parens": 1,
"quotes": [
2,
"single",
{
"avoidEscape": true,
"allowTemplateLiterals": true
}
],
"vue/no-use-v-if-with-v-for": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"babel": {
"presets": [
[
"@vue/app",
{
"useBuiltIns": "entry"
}
]
]
}
}