forked from Click2Buy/vue-pivot-table
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·45 lines (45 loc) · 1.34 KB
/
package.json
File metadata and controls
executable file
·45 lines (45 loc) · 1.34 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
{
"name": "@marketconnect/vue-pivot-table",
"description": "A vue component for pivot table",
"private": false,
"version": "0.0.1",
"author": "MarketConnect",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MarketConnect/vue-pivot-table"
},
"main": "dist/vue-pivot-table.js",
"scripts": {
"dev": "webpack-dev-server --progress",
"build": "npm run build:lib & npm run build:browser",
"build:lib": "webpack --env.prod --progress --hide-modules",
"build:browser": "webpack --env.prod --env.browser --progress --hide-modules"
},
"dependencies": {
"vue": "^2.5.11",
"vuedraggable": "^2.16.0"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/runtime": "^7.0.0",
"autoprefixer": "^9.0.1",
"babel-loader": "^8.0.2",
"bootstrap": "^4.1.2",
"css-loader": "^0.28.7",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^3.2.0",
"javascript-natural-sort": "^0.7.1",
"node-sass": "^4.9.3",
"postcss-loader": "^2.1.6",
"sass-loader": "^7.0.3",
"vue-loader": "^15.2.6",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.16.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.3"
}
}