forked from peluprvi/vuetifyjs.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·115 lines (115 loc) · 3.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"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",
"translate": "cross-env TRANSLATE=true node server",
"build": "rimraf dist && concurrently \"yarn build:client --no-progress\" \"yarn build:server --no-progress\" -n\"client,server\" --kill-others-on-fail -r",
"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,.json src",
"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": {
"api-generator": "vuetifyjs/api-generator",
"axios": "^0.18.0",
"babel-polyfill": "^6.26.0",
"chokidar": "^2.0.4",
"compression": "^1.7.2",
"cookie-parser": "^1.4.3",
"cross-env": "^5.2.0",
"dotenv": "^5.0.1",
"es6-promise": "^4.2.4",
"express": "^4.16.3",
"lru-cache": "^4.1.3",
"memory-fs": "^0.4.1",
"node-fetch": "^2.1.2",
"route-cache": "^0.4.4",
"serialize-javascript": "^1.5.0",
"serve-favicon": "^2.5.0",
"shopify-buy": "^1.4.0",
"vee-validate": "^2.0.9",
"vue": "^2.5.16",
"vue-analytics": "^5.12.2",
"vue-i18n": "^7.8.1",
"vue-no-ssr": "^0.2.2",
"vue-router": "^3.0.1",
"vue-server-renderer": "^2.5.16",
"vuelidate": "^0.6.2",
"vuetify": "^1.1.7",
"vuex": "^3.0.1",
"vuex-router-sync": "^5.0.0"
},
"devDependencies": {
"@mdi/font": "^2.4.85",
"autoprefixer": "^8.6.5",
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.5",
"babel-loader": "^7.1.5",
"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-env": "^1.7.0",
"babel-register": "^6.26.0",
"concurrently": "^3.6.0",
"css-loader": "^0.28.11",
"deepmerge": "^2.1.1",
"diff-json": "^0.1.11",
"docsearch.js": "^2.5.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.5.0",
"event-source-polyfill": "^0.0.12",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"fs-extra": "^6.0.1",
"hard-source-webpack-plugin": "^0.10.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^0.14.3",
"marked": "^0.4.0",
"mini-css-extract-plugin": "^0.4.1",
"null-loader": "^0.1.1",
"ouch": "^1.1.0",
"prismjs": "^1.15.0",
"pug": "^2.0.3",
"pug-plain-loader": "^1.0.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"script-ext-html-webpack-plugin": "^2.0.1",
"simple-git": "^1.92.0",
"source-map-loader": "^0.2.3",
"style-loader": "^0.21.0",
"stylus": "^0.54.5",
"stylus-loader": "^3.0.2",
"sw-precache-webpack-plugin": "^0.11.5",
"url-loader": "^1.0.1",
"vue-color": "^2.4.6",
"vue-loader": "^15.2.4",
"vue-prism-component": "^1.0.1",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16",
"webpack": "^4.15.1",
"webpack-bundle-analyzer": "^2.13.1",
"webpack-cli": "^2.1.5",
"webpack-dev-middleware": "^3.1.3",
"webpack-hot-middleware": "^2.22.2",
"webpack-merge": "^4.1.3",
"webpack-node-externals": "^1.7.2"
}
}