forked from TimOetting/kirby-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 964 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.6.0",
"autoprefixer": "^9.7.4",
"mustache": "^3.2.1",
"parcel-bundler": "^1.12.4",
"sass": "^1.25.0",
"stylus": "^0.54.7",
"vue-hot-reload-api": "^2.3.4",
"vue-template-compiler": "^2.6.11",
"vuedraggable": "^2.23.2"
},
"dependencies": {
"vue": "^2.6.11"
}
}