-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
126 lines (126 loc) · 4.05 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "bfe_dashboard",
"version": "0.0.1",
"description": "noahv demo project",
"scripts": {
"start": "node configs/dev-server.js $PORT",
"build": "node configs/build.js",
"test": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js",
"lint": "eslint --ext .js,.vue ./ --quiet --fix"
},
"repository": {
"type": "git",
"url": ""
},
"author": "darrenywyu",
"license": "UNLICENSED",
"dependencies": {
"babel-polyfill": "^6.26.0",
"babel-runtime": "^6.26.0",
"codemirror": "5.45.0",
"downloadjs": "^1.4.7",
"echarts": "^4.9.0",
"element-ui": "^2.13.2",
"email-addresses": "^3.1.0",
"ipaddr.js": "^1.9.1",
"iview": "^3.3.0",
"js-cookie": "^2.2.1",
"js-store": "^0.0.9",
"json2csv": "^5.0.5",
"lodash": "^4.17.15",
"moment": "^2.27.0",
"noahv-component": "^1.1.37",
"noahv-core": "^1.0.10",
"noahv-mockup": "^1.0.3",
"noahv-request": "^1.0.4",
"nprogress": "^0.2.0",
"underscore": "^1.9.1",
"uuid": "^8.2.0",
"validator": "^13.6.0",
"vue": "^2.6.10",
"vue-cookies": "^1.7.2",
"vue-i18n": "^8.22.2",
"vue-router": "^3.0.3"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^7.1.2",
"babel-plugin-component": "^1.1.1",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.3",
"chai": "^4.1.2",
"chalk": "^2.3.0",
"child_process": "^1.0.2",
"compression-webpack-plugin": "^2.0.0",
"connect-history-api-fallback": "^1.4.0",
"cross-env": "^5.2.1",
"cross-spawn": "^6.0.5",
"css-loader": "^2.1.1",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^4.7.1",
"eventsource-polyfill": "^0.9.6",
"express": "^4.16.2",
"file-loader": "^3.0.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "^3.2.0",
"http-proxy-middleware": "^0.19.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^3.0.5",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"mini-css-extract-plugin": "^0.6.0",
"mocha": "^6.1.2",
"morgan": "^1.9.1",
"opn": "^5.1.0",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"ora": "^3.4.0",
"prettier": "^2.0.5",
"sinon": "^7.3.1",
"sinon-chai": "^2.14.0",
"uglifyjs-webpack-plugin": "2.1.2",
"url-loader": "^1.1.2",
"validator-js": "^0.2.1",
"vue-loader": "^15.7.0 ",
"vue-style-loader": "^4.1.2",
"vue-template-compiler": "^2.5.2",
"webpack": "^4.30.0",
"webpack-bundle-analyzer": "^3.2.0",
"webpack-dev-middleware": "^3.6.2",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1"
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": true,
"proseWrap": "preserve",
"arrowParens": "avoid",
"bracketSpacing": true,
"trailingComma": "none"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
}
}