forked from easy-team/egg-vue-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.3 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
{
"name": "egg-vue-typescript-boilerplate",
"version": "4.0.1",
"description": "Egg + Vue + TypeScript 骨架项目",
"scripts": {
"start": "egg-scripts start",
"dev": "egg-bin dev -r egg-ts-helper/register",
"debug": "egg-bin debug",
"build": "easy build",
"tsc": "ets && tsc -p tsconfig.json",
"clean": "ets clean",
"kill": "easy kill",
"lint": "tslint --project . -c tslint.json",
"fix": "tslint --fix --project . -c tslint.json",
"ii": "npm install --registry https://registry.npm.taobao.org",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"dependencies": {
"@hubcarl/json-typescript-mapper": "2.0.0",
"element-ui": "^2.0.8",
"extend": "~3.0.0",
"font-awesome": "^4.7.0",
"lodash": "^4.17.4",
"lodash-id": "^0.14.0",
"lowdb": "^1.0.0",
"mockjs": "^1.0.1-beta3",
"moment": "^2.17.1",
"shortid": "^2.2.8",
"showdown": "^1.8.6",
"simplemde": "^1.11.2",
"axios": "^0.18.1",
"egg": "^2.3.0",
"egg-scripts": "^2.10.0",
"egg-cors": "^2.1.1",
"egg-webpack": "^4.4.7",
"egg-webpack-vue": "^2.0.0",
"egg-view-vue-ssr": "^3.0.5",
"vue": "^2.5.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0",
"vue-property-decorator": "^7.2.0",
"vuex-class": "^0.3.1"
},
"devDependencies": {
"@types/lodash": "^4.14.117",
"@types/lowdb": "^1.0.6",
"@types/node": "^10.12.0",
"@types/shortid": "^0.0.29",
"cz-conventional-changelog": "^2.1.0",
"easywebpack-cli": "^4.1.0",
"easywebpack-vue": "^4.2.1",
"egg-bin": "^4.9.0",
"egg-scripts": "^2.10.0",
"egg-ts-helper": "^1.13.0",
"node-tool-utils": "^1.1.1",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.1",
"tslint": "^5.9.1",
"tslint-loader": "^3.5.3",
"typescript": "^3.0.0"
},
"egg": {
"typescript": true
},
"engines": {
"node": ">=8.0.0"
},
"ci": {
"version": "8, 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/easy-team/egg-vue-typescript-boilerplate.git"
},
"author": "[email protected]",
"license": "MIT",
"homepage": "https://github.com/easy-team/egg-vue-typescript-boilerplate.git",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}