-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "parcel-vue-bundler",
"version": "0.0.1",
"description": "Starter WordPress plugin utilizing Parcel to bundle your Vue application",
"main": "assets/js/src/main.js",
"scripts": {
"watch": "concurrently \"npm run dev\" \"npm run build\"",
"dev": "cross-env NODE_ENV=development node assets/js/bundler-dev.js",
"build": "cross-env NODE_ENV=production node assets/js/bundler-build.js"
},
"dependencies": {
"autoprefixer": "^8.6.0",
"babel-preset-env": "^1.7.0",
"concurrently": "^3.5.1",
"cross-env": "^5.1.6",
"css-loader": "^0.28.11",
"cssnano": "^3.10.0",
"node-sass": "^4.9.0",
"parcel-bundler": "^1.8.1",
"postcss-modules": "^1.1.0",
"scss-loader": "0.0.1",
"vue": "^2.5.16",
"vue-loader": "^15.2.4",
"vue-style-loader": "^4.1.0",
"vue-template-compiler": "^2.5.16"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jchristopher/parcel-vue-bundler.git"
},
"keywords": [
"parcel",
"parceljs",
"vue",
"bundle",
"bundler",
"wordpress",
"plugin",
"build"
],
"author": "Jonathan Christopher",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/jchristopher/parcel-vue-bundler/issues"
},
"homepage": "https://github.com/jchristopher/parcel-vue-bundler#readme"
}