-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
97 lines (97 loc) · 2.42 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
{
"name": "vue-music",
"version": "0.1.1",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"start": "yarn workspace NeteaseCloudMusicApi start",
"build:dist": "vue-cli-service build",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"precommit": "git add .",
"commit": "git-cz",
"now": "now -e NODE_ENV=production --public --prod --npm --regions bru",
"preclone:api": "node scripts/del NeteaseCloudMusicApi/",
"clone:api": "git clone --branch v3.21.1 git@github.com:Binaryify/NeteaseCloudMusicApi.git --depth=1",
"postclone:api": "node scripts/del NeteaseCloudMusicApi/.git"
},
"dependencies": {
"@types/lodash": "^4.14.118",
"axios": "^0.18.0",
"lodash": "^4.17.11",
"register-service-worker": "^1.0.0",
"vue": "^2.5.17",
"vue-class-component": "^6.0.0",
"vue-property-decorator": "^7.0.0",
"vue-router": "^3.0.1",
"vue-virtual-scroller": "^1.0.0-beta.2",
"vuex": "^3.0.1",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/chai": "^4.1.0",
"@types/mocha": "^5.2.4",
"@vue/cli-plugin-babel": "^3.0.5",
"@vue/cli-plugin-pwa": "^3.0.5",
"@vue/cli-plugin-typescript": "^3.0.5",
"@vue/cli-plugin-unit-mocha": "^3.0.5",
"@vue/cli-service": "^3.0.5",
"@vue/test-utils": "^1.0.0-beta.20",
"chai": "^4.1.2",
"commitizen": "^3.0.4",
"cz-conventional-changelog": "^2.1.0",
"less": "^3.0.4",
"less-loader": "^4.1.0",
"lint-staged": "^7.2.2",
"now": "^16.2.0",
"typescript": "^3.0.0",
"vue-template-compiler": "^2.5.17"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E GIT_PARAMS"
},
"lint-staged": {
"linters": {
"*.ts": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"ignore": [
"NeteaseCloudMusicApi/*"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"workspaces": [
"NeteaseCloudMusicApi"
],
"engines": {
"node": ">= 10"
}
}