-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 909 Bytes
/
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
{
"name": "test",
"description": "test",
"author": "Thomas Günther <[email protected]>",
"version": "0.0.1",
"type": "kirby-field",
"license": "MIT",
"scripts": {
"watch": "parcel watch src/main.js --out-dir ./ --out-file index.js --no-source-maps",
"build": "parcel build src/main.js --out-dir ./ --out-file index.js --no-source-maps --experimental-scope-hoisting"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 2 versions"
],
"posthtml": {
"recognizeSelfClosing": true
},
"devDependencies": {
"@vue/component-compiler-utils": "^2.3.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"parcel-bundler": "^1.10.3",
"sass": "^1.15.1",
"stylus": "^0.54.5",
"vue-hot-reload-api": "^2.3.1",
"vue-template-compiler": "^2.5.17"
},
"dependencies": {
"vue": "^2.5.17"
}
}