-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
89 lines (89 loc) · 2.81 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": "near-admin-vue",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"serve:translate": "node script/translate.js && vue-cli-service serve",
"translate": "node script/translate.js",
"create:page": "node script/newpage",
"create:mpage": "",
"lint": "vue-cli-service lint",
"build": "vue-cli-service build",
"uat:build": "cross-env BUILD_ENV=uat vue-cli-service build",
"prod:build": "cross-env BUILD_ENV=prod vue-cli-service build",
"analyze:build": "cross-env ANALYZE=true vue-cli-service build",
"single:build": "node script/singleoperate.js build",
"single:serve": "node script/singleoperate.js serve",
"test:e2e": "vue-cli-service test:e2e",
"test:unit": "vue-cli-service test:unit",
"commit": "git-cz",
"genlog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"deploy": "bash deploy.sh"
},
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.4",
"@types/nprogress": "^0.2.0",
"@vitalets/google-translate-api": "^5.0.0",
"@vue/cli-plugin-babel": "^4.3.0",
"@vue/cli-plugin-e2e-cypress": "^4.3.0",
"@vue/cli-plugin-pwa": "^4.3.0",
"@vue/cli-plugin-typescript": "^4.3.0",
"@vue/cli-plugin-unit-mocha": "^4.3.0",
"@vue/cli-service": "^4.3.0",
"@vue/test-utils": "1.0.0-beta.31",
"ant-design-vue": "^1.6.4",
"axios": "^0.21.1",
"babel-plugin-import": "^1.13.0",
"better-mock": "^0.2.6",
"chai": "^4.1.2",
"commitizen": "^4.0.5",
"compression-webpack-plugin": "^3.1.0",
"core-js": "^3.6.4",
"cross-env": "^7.0.2",
"cz-conventional-changelog": "^3.1.0",
"file-loader": "^6.0.0",
"google-translate-open-api": "^1.3.7",
"hard-source-webpack-plugin": "^0.13.1",
"husky": "^4.2.5",
"js-md5": "^0.7.3",
"less": "^3.11.1",
"less-loader": "^6.0.0",
"lint-staged": "^10.2.1",
"logline": "^1.1.2",
"moment": "^2.24.0",
"nprogress": "^0.2.0",
"prompts": "^2.3.2",
"register-service-worker": "^1.7.1",
"sass": "^1.26.3",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^2.3.6",
"typescript": "~3.8.3",
"vue": "^2.6.11",
"vue-async-computed": "^3.8.2",
"vue-class-component": "^7.2.3",
"vue-codemirror": "^4.0.6",
"vue-draggable-resizable": "^2.3.0",
"vue-i18n": "^8.17.4",
"vue-introjs": "^1.3.2",
"vue-router": "^3.1.6",
"vue-template-compiler": "^2.6.11",
"vuedraggable": "^2.24.3",
"vuex": "^3.1.3",
"webpack-spritesmith": "^1.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}