forked from vuestorefront/vue-storefront
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·113 lines (113 loc) · 3.44 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vue-storefront",
"version": "0.0.0",
"description": "A Vue.js, PWA eCommerce frontend",
"repository": {
"type": "git",
"url": "git+https://github.com/DivanteLtd/vue-storefront"
},
"keywords": [
"vue",
"vuex",
"vue-router",
"webpack",
"starter",
"server-side",
"boilerplate"
],
"author": "pkarw <[email protected]> and contributors",
"license": "MIT",
"bugs": {
"url": "https://github.com/DivanteLtd/vue-storefront/issues"
},
"homepage": "https://github.com/DivanteLtd/vue-storefront/README.md",
"scripts": {
"start": "cross-env NODE_ENV=production node server",
"installer": "node installer",
"all": "node all",
"dev": "node server",
"build:client": "cross-env NODE_ENV=production webpack --config ./build/webpack.client.config.js --progress --hide-modules",
"build:server": "cross-env NODE_ENV=production webpack --config ./build/webpack.server.config.js --progress --hide-modules",
"build": "rimraf dist && npm run build:client && npm run build:server",
"unit": "karma start ./test/unit/karma.conf.js --single-run"
},
"dependencies": {
"ajv": "^5.2.2",
"axios": "^0.13.1",
"bodybuilder": "^2.2.1",
"command-exists": "^1.2.2",
"cross-env": "^3.1.4",
"elastic-builder": "^1.1.0",
"elasticsearch": "^13.3.1",
"empty-dir": "^0.2.1",
"express": "^4.14.0",
"fs-exists-sync": "^0.1.0",
"inquirer": "^3.3.0",
"is-windows": "^1.0.1",
"jsonfile": "^4.0.0",
"localforage": "^1.5.0",
"lru-cache": "^4.0.1",
"mkdirp": "^0.5.1",
"object-hash": "^1.2.0",
"print-message": "^2.1.0",
"serialize-javascript": "^1.3.0",
"serve-favicon": "^2.3.0",
"update": "^0.7.4",
"url-parse": "^1.2.0",
"vue": "^2.5.2",
"vue-carousel": "^0.6.5",
"vue-lazyload": "^1.1.4",
"vue-markdown": "^2.2.4",
"vue-markdown-loader": "^2.2.1",
"vue-no-ssr": "^0.2.0",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.2",
"vue2-slugify": "0.0.1",
"vuelidate": "^0.6.1",
"vuex": "^3.0.0",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"babel-core": "^6.13.2",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.0.0",
"babel-preset-env": "^1.6.x",
"babel-preset-stage-2": "^6.13.0",
"chai": "^3.5.0",
"css-loader": "^0.23.1",
"eslint": "^3.2.2",
"eslint-config-standard": "^6.0.0-beta.2",
"eslint-friendly-formatter": "^2.0.6",
"eslint-loader": "^1.5.0",
"eslint-plugin-html": "^1.5.2",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.0",
"extract-text-webpack-plugin": "^2.0.0-beta.3",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^2.28.0",
"karma": "^1.1.2",
"karma-mocha": "^1.1.1",
"karma-phantomjs-launcher": "^1.0.1",
"karma-sinon-chai": "^1.2.3",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.26",
"karma-webpack": "^2.0.2",
"mocha": "^3.0.2",
"node-sass": "^4.5.3",
"phantomjs-prebuilt": "^2.1.10",
"rimraf": "^2.6.0",
"sass-loader": "^6.0.6",
"sinon": "^1.17.5",
"sinon-chai": "^2.8.0",
"stylus": "^0.54.5",
"stylus-loader": "^2.4.0",
"sw-precache-webpack-plugin": "^0.9.2",
"vue-loader": "^10.0.0",
"vue-ssr-webpack-plugin": "^1.0.2",
"vue-template-compiler": "^2.5.2",
"webpack": "^2.2.1",
"webpack-dev-middleware": "^1.6.1",
"webpack-hot-middleware": "^2.12.2",
"webpack-merge": "^4.1.0"
}
}