-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
72 lines (72 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
{
"name": "@madewithcards/adaptivecards-vue",
"description": "Render cards in vue easily",
"version": "2.9.1",
"author": "Tim Cadenbach <[email protected]>",
"license": "MIT",
"main": "dist/adaptivecards-vue.js",
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/MadeWithCards/adaptivecards-vue.git"
},
"homepage": "https://github.com/MadeWithCards/adaptivecards-vue",
"keywords": [
"vue",
"vue-component",
"adaptive cards",
"adaptive cards in vue"
],
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --hot --open --config webpack.config.dev.js",
"build:demo": "cross-env NODE_ENV=production webpack --progress --hide-modules --config webpack.config.dev.js",
"build:lib": "cross-env NODE_ENV=production webpack --progress --hide-modules --config webpack.config.prod.js",
"lint": "eslint --ext .js,.vue ."
},
"dependencies": {
"adaptivecards": "^2.9.0",
"adaptivecards-templating": "^2.1.0",
"vue": "^2.5.21"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"devDependencies": {
"adaptive-expressions": "^4.13.0",
"autoprefixer": "^9.4.4",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"cross-env": "^5.0.5",
"css-loader": "^2.1.1",
"eslint": "^5.14.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"file-loader": "^1.1.4",
"mini-css-extract-plugin": "^0.5.0",
"postcss-loader": "^3.0.0",
"vue-loader": "^15.5.0",
"vue-router": "^3.0.2",
"vue-template-compiler": "^2.5.21",
"webpack": "^4.28.3",
"webpack-bundle-analyzer": "^4.4.1",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.3.1",
"webpack-merge": "^4.2.1"
}
}