forked from tabler/tabler-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.4 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
{
"name": "tabler-vue",
"version": "1.0.0",
"description": "Vue.js implementation of the premium and Open Source dashboard template with responsive and high quality UI. For Free!",
"main": "/dist/vue-tabler.js",
"repository": "https://github.com/tabler/tabler-vue.git",
"author": "Ivan Vilanculo",
"license": "MIT",
"scripts": {
"build:lib": "rollup -c",
"build:example": "cd example && yarn install && yarn build",
"build": "yarn build:lib && yarn build:example",
"dev": "concurrently --kill-others \"yarn dev:lib\" \"yarn dev:example\"",
"dev:lib": "yarn copytablercsstodis && rollup -c -w",
"dev:example": "cd example && yarn install && yarn dev",
"copytablercsstodis": "mkdir -p dist && cp -r node_modules/tabler-ui/dist/assets/css node_modules/tabler-ui/dist/assets/fonts node_modules/tabler-ui/dist/assets/images dist/",
"deploy": "yarn build:example && gh-pages -d example/dist"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-preset-stage-2": "^6.24.1",
"concurrently": "^3.5.1",
"gh-pages": "^1.1.0",
"rollup": "^0.59.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-vue": "^4.2.0",
"vue-template-compiler": "^2.5.16"
},
"peerDependencies": {
"vue": "^2.5.16"
},
"dependencies": {
"tabler-ui": "^0.0.32",
"vue-popperjs": "^1.3.4"
}
}