-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
77 lines (77 loc) · 2.56 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "form-builder",
"version": "1.7.0",
"description": "A component that allows creating forms with two-way binding from data object with default HTML fields and custom, like multi-block or AJAX-select.",
"main": "dist/js/main.js",
"module": "src/js/plugin.js",
"files": [
"dist/js/main.js",
"dist/js/main.legacy.js",
"dist/css/main.css"
],
"awes-files": [
"js/main.js",
"js/main.legacy.js",
"css/main.css"
],
"scripts": {
"start": "concurrently --kill-others \"npm run dev-server\" \"npm run watch\"",
"dev-server": "node ./dev-server/index.js",
"watch": "cross-env NODE_ENV=development BROWSERSLIST_ENV=modern gulp",
"watch:legacy": "cross-env NODE_ENV=development BROWSERSLIST_ENV=legacy gulp",
"build": "npm run build:modern && npm run build:legacy",
"build:modern": "cross-env NODE_ENV=production cross-env BROWSERSLIST_ENV=modern gulp",
"build:legacy": "cross-env NODE_ENV=production cross-env BROWSERSLIST_ENV=legacy rollup -c"
},
"repository": {
"type": "git",
"url": "[email protected]:awes-io/form-builder.git"
},
"keywords": [
"form",
"form builder",
"vue",
"vuejs",
"form-builder"
],
"author": "Awescode GmbH",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"autoprefixer": "^9.4.6",
"browser-sync": "^2.26.3",
"concurrently": "^4.1.0",
"core-js": "2",
"cross-env": "^5.2.0",
"cssnano": "^4.1.8",
"express": "^4.16.4",
"gulp": "^4.0.0",
"gulp-clean": "^0.4.0",
"gulp-noop": "^1.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^8.0.0",
"gulp-rollup": "^2.16.2",
"gulp-sourcemaps": "^2.6.4",
"gulp-stylus": "^2.7.0",
"nib": "^1.1.2",
"postcss-import": "^12.0.1",
"rollup": "^0.68.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-license": "^0.7.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-terser": "^4.0.2",
"rollup-plugin-vue": "^4.6.1",
"stylus": "^0.54.5",
"vue-template-compiler": "^2.6.10"
},
"dependencies": {
"@awes-io/utilities": "^2.0.0",
"autosize": "^4.0.2",
"vue-multiselect": "^2.1.6",
"vue-shortkey": "^3.1.7",
"vue-the-mask": "^0.11.1"
}
}