-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.06 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
{
"name": "fleetcoder-ui",
"version": "1.0.0",
"description": "The UI for Fleet",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --inline --progress --config build/webpack.dev.conf.js",
"start": "npm run dev",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"e2e": "node test/e2e/runner.js",
"test": "npm run unit && npm run e2e",
"lint": "eslint --ext .js,.vue src test/unit test/e2e/specs",
"build": "node build/build.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fleetcoder/fleet-ui.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fleetcoder/fleet-ui/issues"
},
"keywords": [],
"homepage": "https://github.com/fleetcoder/fleet-ui",
"author": "Brian Hendrickson <[email protected]>",
"private": false,
"dependencies": {
"@babel/core": "^7.9.6",
"babel": "^6.23.0",
"babel-loader": "^8.1.0",
"chalk": "^4.0.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.5.3",
"eslint": "^6.8.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^4.0.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"html-webpack-plugin": "^4.3.0",
"mint-ui": "^2.2.13",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"ora": "^4.0.4",
"postcss-import": "^12.0.1",
"postcss-load-config": "^1.0.0",
"postcss-loader": "3.0.0",
"postcss-url": "^8.0.0",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"shelljs": "^0.8.4",
"uglifyjs-webpack-plugin": "^2.2.0",
"url-loader": "^4.1.0",
"v-file-upload": "^3.1.7",
"vue": "^2.5.2",
"vue-audio-recorder": "^3.0.1",
"vue-clipboard2": "^0.3.1",
"vue-loader": "^15.9.1",
"vue-plyr": "^6.0.4",
"vue-prism-editor": "^0.3.0",
"vue-resource": "^1.5.1",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^4.43.0",
"webpack-merge": "^4.2.2"
},
"devDependencies": {},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}