package.json
2.58 KB
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
98
99
100
{
"name": "yoho-eshop",
"version": "1.0.1",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon --watch ./server --watch ./config --watch server.js server.js",
"static": "yo-cli dev --config ./build/yo.dev.conf.js",
"build": "yo-cli build --config ./build/yo.prod.conf.js",
"lint-js": "lint-js",
"lint-css": "lint-css",
"precommit": "lint-commit",
"lint-all": "lint-all",
"lint-fix:js": "eslint . --ext .js --ext .vue --fix",
"lint-fix:css": "stylelint . --fix"
},
"config": {
"lintJs": [
{
"title": "JS Front-end",
"path": [
"./app"
]
},
{
"title": "JS Server",
"path": [
"./server"
]
}
],
"lintCss": [
{
"title": "CSS",
"path": [
"**/*.vue"
]
}
]
},
"dependencies": {
"body-parser": "^1.17.1",
"compression": "^1.7.1",
"connect-multiparty": "^2.0.0",
"cookie-parser": "^1.4.3",
"cookie-session": "^2.0.0-beta.1",
"crypto-js": "^3.1.9-1",
"dayjs": "^1.5.16",
"express": "^4.16.2",
"express-session": "^1.15.2",
"ldapjs": "^1.0.2",
"lodash": "^4.17.4",
"request-promise": "^4.2.0",
"sequelize": "^4.37.7",
"serve-favicon": "^2.4.2",
"winston": "^3.0.0-rc5"
},
"devDependencies": {
"axios": "^0.15.3",
"canvas2image": "^1.0.5",
"font-awesome": "^4.7.0",
"html2canvas": "^1.0.0-alpha.9",
"iview": "^2.13.0",
"vue": "^2.5.16",
"vue-echarts": "^3.0.2",
"vue-router": "^3.0.1",
"vuex": "^3.0.1",
"yo-cli": "^2.0.17",
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.2.3",
"babel-plugin-syntax-jsx": "^6.18.0",
"shelljs": "^0.8.1",
"babel-preset-es2015": "^6.24.1",
"vue-template-compiler": "^2.5.16",
"chalk": "^2.3.0",
"eslint": "^4.3.0",
"eslint-config-standard": "^11.0.0",
"eslint-config-yoho": "^1.1.0",
"eslint-friendly-formatter": "^2.0.7",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^3.1.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^2.1.0",
"husky": "^0.13.3",
"iview-loader": "^1.0.0",
"nodemon": "^1.11.0",
"rimraf": "^2.6.1",
"stylelint": "^8.0.0",
"stylelint-config-yoho": "^1.4.0",
"stylelint-formatter-table": "^1.0.3",
"stylelint-scss": "^3.1.0",
"vue-loader": "^15.2.4",
"yoho-lint": "^1.0.4"
},
"author": "陈峰 <feng.chen@yoho.cn>",
"license": "ISC",
"repository": "http://git.yoho.cn/fe/yoho-eshop"
}