-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
{
"name": "parcel-vue-app",
"version": "1.0.0",
"description": "Parcel Vue App",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development parcel ./index.html -p 3000 --open",
"build": "cross-env NODE_ENV=production parcel build ./index.html -d build --public-url ./",
"lint": "eslint 'src/**/*.{vue,js}'; exit 0",
"format": "prettier --write 'src/**/*.{vue,js}'; exit 0"
},
"keywords": [
"Vue",
"Parcel"
],
"author": "Miljan Djordjevic <[email protected]>",
"license": "MIT",
"dependencies": {
"bulma": "^0.7.1",
"vue": "^2.5.16",
"vue-hot-reload-api": "^2.3.0"
},
"devDependencies": {
"@vue/component-compiler-utils": "^1.2.1",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"cross-env": "^5.1.4",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-with-prettier": "^3.3.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-vue": "^4.5.0",
"parcel-bundler": "^1.7.1",
"parcel-plugin-eslint": "^1.0.4",
"parcel-plugin-vue": "^1.5.0",
"prettier": "1.12.1",
"vue-eslint-parser": "^2.0.3",
"vue-template-compiler": "^2.5.16"
}
}