-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
94 lines (94 loc) · 2.67 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
{
"name": "egg-typescript-element-kit",
"version": "2.0.0",
"description": "基于 egg + typescript + element + webpack 服务端渲染同构工程骨架项目",
"scripts": {
"tsc": "tsc -p tsconfig.json",
"build": "npm run tsc && easy build prod",
"dev": "egg-bin dev -r 'egg-ts-helper/register'",
"start": "egg-scripts start",
"lint": "tslint --project .",
"fix": "tslint --project . --fix",
"debug": "egg-bin debug",
"autod": "egg-bin autod",
"cov": "egg-bin cov",
"test": "npm run lint && egg-bin test",
"ii": "npm install --registry https://registry.npm.taobao.org"
},
"dependencies": {
"@hubcarl/json-typescript-mapper": "^1.1.4",
"axios": "^0.17.1",
"cross-env": "^5.0.0",
"egg": "^2.1.0",
"egg-bin": "^4.3.7",
"egg-cors": "^2.0.0",
"egg-logger": "^1.5.0",
"egg-scripts": "^2.5.1",
"egg-validate": "^1.0.0",
"egg-view-vue-ssr": "^3.0.5",
"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",
"vue": "^2.5.0",
"vue-hot-reload-api": "^2.1.0",
"vue-material-input": "^1.2.0",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"autod-egg": "^1.0.0",
"autoprefixer": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.6.0",
"cz-conventional-changelog": "^2.1.0",
"easywebpack-cli": "^3.9.0",
"easywebpack-vue": "^4.0.0",
"egg-logview": "^1.0.0",
"egg-ts-helper": "^1.9.2",
"egg-webpack": "^4.0.0",
"egg-webpack-vue": "^2.0.0",
"imagemin-webpack-plugin": "^2.1.0",
"ip": "^1.1.5",
"less": "^2.7.3",
"less-loader": "^4.0.5",
"ts-loader": "^4.0.0",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"tslint-loader": "^3.5.3",
"typescript": "^2.6.2"
},
"egg": {
"typescript": true
},
"engines": {
"node": ">=8.0.0"
},
"ci": {
"version": "8, 9"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hubcarl/egg-typescript-element-kit.git"
},
"author": "hubcarl@126.com",
"license": "MIT",
"homepage": "https://github.com/hubcarl/egg-typescript-element-kit",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}