forked from peluprvi/vuetifyjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·98 lines (98 loc) · 3.28 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
{
"name": "vuetifyjs.com",
"description": "A Vue.js project",
"author": "John Leider <[email protected]>",
"version": "0.0.1",
"scripts": {
"dev": "node server",
"start": "cross-env NODE_ENV=production node server",
"build": "rimraf public && npm run build:client && npm run build: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",
"lint": "eslint --ext .js,.vue .",
"commitmsg": "node scripts/lint-commit-message.js",
"precommit": "node scripts/warn-npm-install.js && yarn lint",
"deploy": "now -e --team=vuetifyjs --token=$NOW_TOKEN --npm",
"alias": "now alias --team=vuetifyjs --token=$NOW_TOKEN"
},
"engines": {
"node": ">=7.0 <10",
"npm": ">=4.0"
},
"dependencies": {
"axios": "^0.17.1",
"babel-polyfill": "^6.26.0",
"chokidar": "^2.0.2",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"cross-env": "^5.1.4",
"dotenv": "^4.0.0",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"extract-text-webpack-plugin": "^3.0.2",
"lru-cache": "^4.1.2",
"memory-fs": "^0.4.1",
"node-fetch": "^1.7.3",
"route-cache": "^0.4.4",
"serialize-javascript": "^1.4.0",
"serve-favicon": "^2.4.5",
"shopify-buy": "^1.2.0",
"vee-validate": "^2.0.8",
"vue": "^2.5.16",
"vue-analytics": "^5.8.0",
"vue-i18n": "^7.4.2",
"vue-markdown": "^2.2.4",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.16",
"vuelidate": "^0.6.2",
"vuetify": "^1.0.19",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"autoprefixer": "^7.2.3",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.26.0",
"css-loader": "^0.28.10",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-vue": "^4.5.0",
"event-source-polyfill": "^0.0.12",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.6.1",
"highlight.js": "^9.12.0",
"html-webpack-plugin": "^2.30.1",
"husky": "^0.14.3",
"mdi": "^2.1.99",
"pug": "^2.0.1",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"script-ext-html-webpack-plugin": "^1.8.8",
"style-loader": "^0.19.1",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"sw-precache-webpack-plugin": "^0.11.4",
"url-loader": "^0.6.2",
"vue-color": "^2.4.5",
"vue-loader": "^14.2.1",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.16",
"webpack": "^3.10.0",
"webpack-dev-middleware": "^2.0.3",
"webpack-hot-middleware": "^2.21.2",
"webpack-merge": "^4.1.2",
"webpack-node-externals": "^1.6.0"
}
}