-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 1.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
{
"name": "moba",
"version": "0.1.0",
"license": "ISC",
"repository": "https://github.com/project-trio/moba",
"description": "A top-down 3D MOBA that plays in your browser.",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build --modern",
"lint": "vue-cli-service lint"
},
"engines": {
"node": "^12",
"npm": "^6"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/eslint-parser": "^7.15.0",
"@fullhuman/postcss-purgecss": "^1.3.0",
"@ky-is/eslint-config": "^1.9.3",
"@ky-is/tailwindcss-plugin-width-height": "^1.0.0",
"@ky-is/trio-client": "^1.0.1",
"@vue/babel-preset-app": "^4.5.13",
"@vue/cli-plugin-babel": "^4.5.13",
"@vue/cli-plugin-eslint": "^4.5.13",
"@vue/cli-service": "^4.5.13",
"core-js": "^3.16.1",
"css-loader": "^3.6.0",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^7.16.0",
"postcss-preset-env": "^6.7.0",
"stats.js": "^0.17.0",
"tailwindcss": "^1.9.6",
"three": "^0.101.1",
"typescript": "^4.3.5",
"url-loader": "^3.0.0",
"vue": "^2.6.14",
"vue-loader": "^15.9.8",
"vue-router": "^3.5.2",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.50.0"
},
"babel": {
"presets": [
[
"@vue/app",
{
"jsx": false,
"loose": true
}
]
]
},
"browserslist": {
"production": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"development": [
"last 1 version",
"not dead"
]
},
"eslintConfig": {
"extends": "@ky-is/eslint-config/vue",
"globals": {
"p": "readonly",
"warn": "readonly"
},
"rules": {
"vue/require-default-prop": "off"
}
}
}