-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
97 lines (97 loc) · 2.91 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
{
"homepage": "https://daggerok.github.io/vue-examples",
"name": "vue-examples",
"version": "0.0.2",
"description": "This repository is contains Vue.js playground projects",
"author": "Maksim Kostromin <[email protected]>",
"private": true,
"scripts": {
"dev": "node build/dev-server.js",
"start": "node build/dev-server.js",
"build": "node build/build.js",
"lint": "eslint --ext .js,.vue src",
"predeploy": "yarn install; npm-run-all predeploy:*",
"predeploy:build": "yarn build",
"predeploy:404-html": "ncp ./dist/index.html ./dist/404.html",
"deploy": "gh-pages -d ./dist -b gh-pages -m \"Github Pages $(date +%Y-%m-%d) deployment\""
},
"dependencies": {
"base-href-webpack-plugin": "1.0.2",
"jquery": "3.5.0",
"material-design-icons": "3.0.1",
"materialize-css": "0.100.2",
"vue": "2.4.3",
"vue-router": "2.7.0",
"vuex": "2.4.0",
"whatwg-fetch": "2.0.3"
},
"devDependencies": {
"@types/jquery": "3.2.12",
"@types/node": "8.0.28",
"@types/systemjs": "0.20.5",
"autoprefixer": "7.1.4",
"babel-core": "6.26.0",
"babel-eslint": "8.0.0",
"babel-loader": "7.1.2",
"babel-plugin-transform-runtime": "6.23.0",
"babel-preset-env": "1.6.0",
"babel-preset-stage-2": "6.24.1",
"babel-register": "6.26.0",
"chalk": "2.1.0",
"connect-history-api-fallback": "1.3.0",
"copy-webpack-plugin": "4.0.1",
"cross-env": "5.0.5",
"cross-spawn": "5.1.0",
"css-loader": "0.28.7",
"cssnano": "3.10.0",
"eslint": "4.6.1",
"eslint-config-standard": "10.2.1",
"eslint-friendly-formatter": "3.0.0",
"eslint-loader": "1.9.0",
"eslint-plugin-html": "3.2.1",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-node": "5.1.1",
"eslint-plugin-promise": "3.5.0",
"eslint-plugin-standard": "3.0.1",
"eventsource-polyfill": "0.9.6",
"express": "4.15.4",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"friendly-errors-webpack-plugin": "1.6.1",
"gh-pages": "1.0.0",
"html-webpack-plugin": "2.30.1",
"http-proxy-middleware": "0.17.4",
"inject-loader": "3.0.1",
"lolex": "2.1.2",
"ncp": "2.0.0",
"nightwatch": "0.9.16",
"npm-run-all": "4.1.1",
"opn": "5.1.0",
"optimize-css-assets-webpack-plugin": "3.1.1",
"ora": "1.3.0",
"rimraf": "2.6.2",
"semver": "5.4.1",
"shelljs": "0.7.8",
"url-loader": "0.5.9",
"vue-loader": "13.0.4",
"vue-style-loader": "3.0.2",
"vue-template-compiler": "2.4.3",
"webpack": "3.5.6",
"webpack-bundle-analyzer": "2.9.0",
"webpack-dev-middleware": "1.12.0",
"webpack-hot-middleware": "2.19.1",
"webpack-merge": "4.1.0"
},
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
],
"main": "index.js",
"repository": "https://github.com/daggerok/vue-examples.git",
"license": "MIT"
}