-
Notifications
You must be signed in to change notification settings - Fork 148
/
package.json
95 lines (95 loc) · 2.84 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
{
"name": "vue-wordpress-pwa",
"version": "0.0.0",
"description": "An offline-first SPA using Vue.js, the WordPress REST API and Progressive Web Apps",
"repository": {
"type": "git",
"url": "git+https://github.com/bstavroulakis/vue-wordpress-pwa"
},
"keywords": [
"vue",
"vuex",
"offline",
"progressive-web-app",
"pwa-apps",
"pwa",
"webpack",
"starter",
"server-side",
"boilerplate"
],
"author": "bstavroulakis <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bstavroulakis/vue-wordpress-pwa/issues"
},
"homepage": "https://github.com/bstavroulakis/vue-wordpress-pwa#readme",
"scripts": {
"start": "cross-env NODE_ENV=production node server",
"dev": "rimraf ./dist && cross-env NODE_ENV=development node server",
"build": "node build/build.js",
"build:server": "cross-env NODE_ENV=production webpack --config ./build/webpack.server.config.js --progress --hide-modules",
"update:packages": "node wipe-dependencies.js && rm -rf node_modules && npm update --save-dev && npm update --save"
},
"optionalDependencies": {
"fsevents": "*"
},
"dependencies": {
"axios": "0.18.0",
"bulma": "0.7.4",
"compression": "1.7.4",
"cross-env": "5.2.0",
"express": "4.16.4",
"intersection-observer-polyfill": "0.1.0",
"localforage": "1.7.3",
"lru-cache": "5.1.1",
"serialize-javascript": "1.7.0",
"vue": "2.6.10",
"vue-clazy-load": "0.4.2",
"vue-resource": "1.5.1",
"vue-router": "3.0.6",
"vue-server-renderer": "2.6.10",
"vue-style-loader": "^4.1.2",
"vuex": "3.1.0",
"vuex-router-sync": "5.0.0"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "10.0.1",
"babel-loader": "8.0.5",
"css-loader": "2.1.1",
"eslint": "5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-html": "^5.0.3",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.2",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "3.0.1",
"fs-extra": "7.0.1",
"html-webpack-plugin": "3.2.0",
"md5": "2.2.1",
"mini-css-extract-plugin": "^0.6.0",
"node-sass": "^4.11.0",
"purify-css": "1.2.6",
"purifycss": "1.2.6",
"purifycss-webpack": "0.7.0",
"recursive-readdir": "2.2.2",
"rimraf": "2.6.3",
"sass-loader": "7.1.0",
"serve-favicon": "2.5.0",
"url-loader": "1.1.2",
"vue-loader": "15.7.0",
"vue-template-compiler": "2.6.10",
"webpack": "4.30.0",
"webpack-cli": "^3.3.1",
"webpack-dev-middleware": "3.6.2",
"webpack-hot-middleware": "2.24.4"
}
}