-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.15 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
{
"name": "nep-live2d",
"version": "2.1.1",
"description": "Live2D wallpaper for Neptune",
"main": "index.js",
"repository": "https://github.com/guansss/nep-live2d.git",
"author": "guansss",
"license": "MIT",
"scripts": {
"setup": "babel-node --presets @babel/env scripts/setup.js",
"serve": "vue-cli-service serve src/main.js",
"build": "vue-cli-service build src/main.js & babel-node --presets @babel/env scripts/build.js",
"lint": "vue-cli-service lint"
},
"dependencies": {
"autobind-decorator": "^2.4.0",
"eventemitter3": "^4.0.0",
"lodash": "^4.17.15",
"pixi.js": "^5.2.1",
"raw-loader": "^3.1.0",
"semver": "^7.1.3",
"vue": "^2.6.10",
"vue-clickaway": "^2.2.2",
"vue-i18n": "^8.15.0"
},
"devDependencies": {
"@babel/node": "^7.5.5",
"@babel/preset-typescript": "^7.3.3",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"@vue/cli-plugin-babel": "^3.9.2",
"@vue/cli-plugin-eslint": "^3.9.2",
"@vue/cli-plugin-typescript": "^3.9.0",
"@vue/cli-service": "^3.9.3",
"@vue/eslint-config-prettier": "^5.0.0",
"@vue/eslint-config-typescript": "^4.0.0",
"babel-eslint": "^10.0.2",
"body-parser": "latest",
"chalk": "^2.4.2",
"dotenv": "^8.0.0",
"eslint": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"json5": "^2.1.1",
"shelljs": "^0.8.3",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"typescript": "^3.5.3",
"vue-property-decorator": "^8.2.1",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"@vue/prettier",
"@vue/typescript"
],
"rules": {
"no-console": "off",
"no-inner-declarations": "off"
},
"parserOptions": {
"parser": "@typescript-eslint/parser"
}
},
"prettier": {
"printWidth": 120,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "all"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"Chrome >= 67"
]
}