-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.16 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
{
"name": "parcel-scope-hoisting-bug",
"scripts": {
"lint": "eslint \"src/**/*.{js,vue}\"",
"dev": "rimraf dist/ && parcel serve src/index.html",
"prod": "rimraf dist/ && parcel build --no-cache src/index.html && http-server dist/ -p 4321 -c -1",
"prod:hoist": "rimraf dist/ && parcel build --no-cache --experimental-scope-hoisting src/index.html && http-server dist/ -p 4321 -c -1",
"prod:nomin": "rimraf dist/ && parcel build --no-cache --no-minify src/index.html && http-server dist/ -p 4321 -c -1",
"prod:nomin:hoist": "rimraf dist/ && parcel build --no-cache --no-minify --experimental-scope-hoisting src/index.html && http-server dist/ -p 4321 -c -1"
},
"alias": {
"vue": "./node_modules/vue/dist/vue.runtime.esm.js"
},
"dependencies": {
"material-design-icons": "^3.0.1",
"vue": "^2.6.7"
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.6.0",
"eslint": "^5.14.1",
"eslint-plugin-vue": "^5.2.2",
"http-server": "^0.11.1",
"parcel-bundler": "^1.12.0",
"parcel-plugin-inlinesvg": "^0.1.0",
"rimraf": "^2.6.3",
"vue-hot-reload-api": "^2.3.3",
"vue-template-compiler": "^2.6.7"
}
}