-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
107 lines (107 loc) · 2.87 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
{
"name": "@unicorns/quick-dash",
"version": "1.0.0",
"description": "Quick Dash Starter Project",
"private": "false",
"scripts": {
"dev": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "cross-env BABEL_ENV=test nyc --reporter=lcov --reporter=text --reporter=html mocha-webpack --webpack-config webpack.test.js --require test/setup.js test/**/*.spec.js",
"watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnicornGlobal/quick-dash.git"
},
"keywords": [
"starter",
"project",
"quick",
"dash"
],
"author": "Unicorn Global et al",
"license": "MIT",
"bugs": {
"url": "https://github.com/UnicornGlobal/quick-dash/issues"
},
"homepage": "https://github.com/UnicornGlobal/quick-dash#readme",
"dependencies": {
"@unicorns/quick-dash-framework": "^2.1.3",
"@websanova/vue-auth": "^2.21.14-beta",
"axios": "^0.19.0",
"moment": "^2.24.0",
"vee-validate": "^2.2.15",
"vue": "^2.6.10",
"vue-axios": "^2.1.4",
"vue-router": "^3.1.2",
"vuex": "^3.0.1"
},
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"browserslist": "^4.6.6",
"chai": "^4.2.0",
"clean-webpack-plugin": "^1.0.1",
"codecov": "^3.5.0",
"copy-webpack-plugin": "^5.0.4",
"cross-env": "^5.2.0",
"css-loader": "^3.2.0",
"cypress": "^3.4.1",
"eslint": "^6.2.2",
"eslint-config-vue": "^2.0.2",
"eslint-loader": "^3.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-vue": "^5.2.3",
"file-loader": "^4.2.0",
"fs": "0.0.1-security",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"mocha-webpack": "2.0.0-beta.0",
"node-sass": "^4.12.0",
"nyc": "^14.1.1",
"sass-loader": "^7.3.1",
"style-loader": "^1.0.0",
"url-loader": "^2.1.0",
"vue-loader": "^15.4.2",
"vue-style-loader": "^4.1.2",
"vue-svg-loader": "^0.12.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-dev-server": "^3.8.0",
"webpack-merge": "^4.2.1"
},
"nyc": {
"include": [
"src/*.js",
"src/**/*.js",
"src/**/*.vue"
],
"all": true,
"instrument": true,
"sourceMap": false,
"extension": [
".js",
".vue"
]
},
"browserslist": [
"Electron >= 1.8",
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}