forked from andrewcourtice/vuetiful
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.38 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
{
"name": "vuetiful",
"description": "Component framework written on top of the Vue reactive library",
"version": "0.1.0",
"author": "Andrew Courtice",
"repository": "https://github.com/andrewcourtice/vuetiful.git",
"license": "MIT",
"private": true,
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --inline --hot",
"build:components": "cross-env NODE_ENV=production SCOPE=components webpack --progress --hide-modules",
"build:app": "cross-env NODE_ENV=production SCOPE=app webpack --progress --hide-modules",
"start": "npm run dev",
"test": "mocha"
},
"dependencies": {
"core-js": "^2.4.1",
"date-fns": "^1.28.2",
"flex-layout-attribute": "^1.0.3",
"vue": "^2.2.6",
"vue-router": "^2.3.1"
},
"devDependencies": {
"babel-core": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.0",
"chai": "^3.5.0",
"cross-env": "^3.0.0",
"css-loader": "^0.27.3",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.1",
"mocha": "^3.2.0",
"node-sass": "^4.5.2",
"postcss-loader": "^1.3.3",
"sass-loader": "^6.0.3",
"style-loader": "^0.16.1",
"vue-loader": "^11.3.4",
"vue-template-compiler": "^2.2.6",
"webpack": "^2.3.2",
"webpack-bundle-analyzer": "^2.2.0",
"webpack-dev-server": "^2.4.2"
}
}