-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.67 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
{
"name": "vue-parceljs-starter",
"version": "2.0.0",
"description": "Vuejs starter for parceljs with batteries included",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:enricodeleo/vue-parceljs-starter.git"
},
"author": "Enrico Deleo <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/enricodeleo/vue-parceljs-starter",
"keywords": [
"tools",
"vue",
"parceljs",
"starter",
"boilerplate"
],
"engines": {
"node": ">=12.x"
},
"main": "src/main.js",
"scripts": {
"dev": "parcel index.html --no-cache --open --no-autoinstall",
"clean": "rm -rf dist/*",
"build:parcel": "parcel build index.html --no-source-maps --no-autoinstall",
"build": "cross-env NODE_ENV=production npm run clean && npm run build:parcel"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@vue/component-compiler-utils": "^2.6.0",
"autoprefixer": "^9.7.6",
"babel-eslint": "^8.2.6",
"cross-env": "^7.0.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-vue": "^6.2.1",
"node-sass": "^4.14.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-bundle-visualiser": "^1.1.2",
"parcel-plugin-eslint": "^1.0.7",
"parcel-plugin-imagemin": "^1.1.2",
"postcss-modules": "^1.5.0",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.11"
},
"dependencies": {
"bulma": "^0.7.5",
"vue": "^2.6.11",
"vue-router": "^3.1.6",
"vuex": "^3.4.0",
"vuex-router-sync": "^5.0.0"
}
}