-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
89 lines (89 loc) · 2.58 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
{
"name": "roshar-map",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "cross-env MAP_DEBUG=true vue-cli-service serve --port 10010 src/dev.js",
"build": "vue-cli-service build --dest dist/release src/main.js",
"build:dev": "cross-env MAP_DEBUG=true vue-cli-service build --dest dist/dev --skip-plugins pwa,workbox src/dev.js",
"lint": "vue-cli-service lint",
"dumpTranslations": "node ./bin/dump-translations.js",
"validateTranslations": "node ./bin/validate-translations.js",
"convertTextures": "node ./bin/convert-textures.js"
},
"dependencies": {
"@johmun/vue-tags-input": "^2.1.0",
"@popperjs/core": "^2.4.4",
"core-js": "^3.6.5",
"deep-diff": "^1.0.2",
"hammerjs": "^2.0.8",
"is-mobile": "^2.2.2",
"jszip": "^3.7.0",
"lunr": "^2.3.9",
"lunr-languages": "^1.8.0",
"register-service-worker": "^1.7.1",
"seedrandom": "^3.0.5",
"simple-markdown": "^0.7.2",
"stats.js": "^0.17.0",
"three": "^0.137.0",
"vue": "^2.7.10",
"vue-dragscroll": "^2.1.0",
"vue-feather-icons": "^5.0.0",
"vue-gtag": "^1.10.0",
"vue-i18n": "^8.18.2",
"vue-router": "^3.3.4",
"vue-share-buttons": "^1.1.0",
"vuedraggable": "^2.24.0",
"vuescroll": "^4.16.0",
"vuex": "^3.4.0"
},
"devDependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.10.4",
"@node-rs/jieba": "^1.6.1",
"@nuxtjs/eslint-config": "^3.0.0",
"@vue/cli-plugin-babel": "~4.5.13",
"@vue/cli-plugin-eslint": "~4.5.13",
"@vue/cli-plugin-pwa": "^4.5.13",
"@vue/cli-plugin-vuex": "~4.5.13",
"@vue/cli-service": "~4.5.13",
"@xohu/vue-cli-plugin-ifdef": "^1.1.1",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^6.7.2",
"eslint-plugin-nuxt": "^1.0.0",
"imagemin": "^7.0.1",
"imagemin-webp": "^6.0.0",
"imagemin-zopfli": "^7.0.0",
"js-string-escape": "^1.0.1",
"nodejieba": "^2.5.2",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"vue-template-compiler": "^2.7.10",
"warnings-to-errors-webpack-plugin": "^2.2.0",
"webpack-image-resize-loader": "^4.0.2",
"webpack-image-srcset-loader": "^5.0.3"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"@nuxtjs",
"plugin:nuxt/recommended"
],
"parserOptions": {
"parser": "babel-eslint"
},
"rules": {
"no-param-reassign": "off"
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"packageManager": "[email protected]"
}