This repository has been archived by the owner on Feb 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
107 lines (107 loc) · 3.66 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
{
"name": "epicsevendb-ui",
"version": "1.8.5",
"description": "The Epic Seven Wiki and Database with information on Heroes, Artifacts, Catalysis, Items, Quests, Guides and more!",
"author": "RaphaelDDL <[email protected]>",
"repository": "https://github.com/EpicSevenDB/ui",
"homepage": "https://epicsevendb.com",
"bugs": {
"url": "https://github.com/EpicSevenDB/ui/issues"
},
"private": true,
"license": "CC-BY-NC-SA-4.0",
"data": {
"apiEndpoint": "https://api.epicsevendb.com/",
"assetsEndpoint": "https://assets.epicsevendb.com",
"analyticsId": "UA-129320031-1"
},
"engines": {
"node": ">=10"
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm test"
}
},
"scripts": {
"dev": "cross-env NODE_ENV=development nodemon --trace-warnings --inspect server/index.js --watch server",
"build": "nuxt build",
"start": "cross-env NODE_ENV=production node server/index.js",
"generate": "nuxt generate",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lintfix": "eslint --fix --ext .js,.vue --ignore-path .gitignore .",
"test": "jest --passWithNoTests",
"update": "git pull && npm run build && pm2 restart all"
},
"dependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.14.5",
"@babel/plugin-proposal-optional-chaining": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.15.4",
"@nuxtjs/axios": "^5.13.6",
"@nuxtjs/google-analytics": "^2.4.0",
"@nuxtjs/pwa": "^3.3.5",
"babel-eslint": "^10.1.0",
"babel-preset-minify": "^0.5.1",
"bulma-slider": "2.0.4",
"chart.js": "^3.5.1",
"chartjs-plugin-datalabels": "^2.0.0",
"connect-timeout": "^1.9.0",
"cross-env": "^7.0.3",
"dateformat": "^5.0.1",
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"normalize.css": "^8.0.1",
"nuxt": "2.15.8",
"nuxt-i18n": "^6.22.3",
"v-tooltip": "^2.1.3",
"vue-aplayer": "^1.6.1",
"vue-chartjs": "^3.5.1",
"vue-i18n": "^8.25.1",
"vue-js-modal": "^2.0.1",
"vue-lazyload": "^1.3.3",
"vue-multiselect": "^2.1.6",
"vue-tabs-component": "^1.5.0"
},
"devDependencies": {
"@babel/runtime-corejs2": "^7.15.4",
"@nuxtjs/eslint-config": "^6.0.1",
"@vue/test-utils": "^1.2.2",
"babel-jest": "^27.2.1",
"core-js": "^3.18.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": ">=16.0.3",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-nuxt": ">=2.0.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": ">=5.1.0",
"eslint-plugin-standard": ">=5.0.0",
"eslint-plugin-vue": "^7.18.0",
"husky": "^7.0.2",
"jest": "^27.2.1",
"lint-staged": "^11.1.2",
"node-sass": "6.0.1",
"nodemon": "^2.0.19",
"prettier": "^2.4.1",
"sass-loader": "~10.2.0",
"vue-jest": "^3.0.7",
"webpack": "~4.46.0"
},
"snyk": true
}