-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.52 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
{
"name": "pixi-vue",
"version": "0.0.1",
"description": "pixi vue",
"main": "pixi-vue.min.js",
"unpkg": "pixi-vue.min.js",
"jsdelivr": "pixi-vue.min.js",
"typings": "index.d.ts",
"scripts": {
"dev2": "vue-cli-service serve",
"build2": "vue-cli-service build",
"dev": "webpack-dev-server --open --config webpack-config/dev.js",
"dev-wx": "webpack --config webpack-config/dev-wx.js",
"build": "node ./helper/build/index.js",
"lint": "eslint src --ext js"
},
"author": "theajack",
"repository": {
"type": "git",
"url": "https://github.com/theajack/pixi-vue"
},
"keywords": [
"pixi-vue"
],
"license": "MIT",
"dependencies": {
"core-js": "^3.6.4",
"pixi.js": "^6.3.1",
"pixi.js-legacy": "^6.3.2"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-object-rest-spread": "^7.6.2",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/preset-env": "^7.6.3",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@pixi/unsafe-eval": "^6.3.1",
"@types/weixin-app": "^2.9.3",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vue/cli-plugin-babel": "~4.3.0",
"@vue/cli-service": "~4.3.0",
"@vue/compiler-sfc": "^3.2.33",
"@vue/runtime-core": "^3.2.33",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"chalk": "^4.1.1",
"copy-webpack-plugin": "^6.2.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-loader": "^3.0.2",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^8.7.1",
"gulp": "^4.0.2",
"gulp-markdown-toc": "^1.1.0",
"husky": "^3.0.9",
"lint-staged": "^9.4.2",
"single-line-log": "^1.1.2",
"ts-loader": "^6.2.1",
"typescript": "^4.6.4",
"vue": "^3.2.33",
"vue-cli-plugin-vue-next": "~0.1.3",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.14",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}