forked from TimOetting/kirby-builder
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·39 lines (39 loc) · 963 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
37
38
39
{
"name": "kirby-builder-asset-pipeline",
"description": "Kirby Builder Asset Pipeline",
"author": "Tim Ötting",
"version": "0.0.1",
"type": "kirby-field",
"license": "MIT",
"scripts": {
"watch": "parcel watch src/index.js --no-source-maps -d ./",
"build": "parcel build src/index.js --no-source-maps --experimental-scope-hoisting -d ./"
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"last 2 versions"
],
"posthtml": {
"recognizeSelfClosing": true
},
"devDependencies": {
"@babel/core": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"@vue/component-compiler-utils": "^2.3.0",
"autoprefixer": "^9.6.0",
"mustache": "^3.0.1",
"parcel-bundler": "^1.3.1",
"sass": "^1.15.1",
"stylus": "^0.54.5",
"vue-hot-reload-api": "^2.3.1",
"vue-template-compiler": "^2.5.17",
"vuedraggable": "^2.20.0"
},
"dependencies": {
"vue": "^2.5.17"
}
}