forked from fagbokforlaget/vue-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.55 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
{
"name": "vue-jsonschema-form",
"version": "1.0.2",
"description": "JSON Schema form generator for Vue.js",
"main": "index.js",
"scripts": {
"build:dist": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"lint": "eslint --ext .js,.vue src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fagbokforlaget/vue-jsonschema-form.git"
},
"keywords": [
"json",
"schema",
"vue"
],
"author": "Deepak Thukral <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fagbokforlaget/vue-jsonschema-form/issues"
},
"homepage": "https://github.com/fagbokforlaget/vue-jsonschema-form#readme",
"dependencies": {
"bootstrap": "^3.3.7",
"jsonschema": "^1.2.0",
"vue": "^2.4.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-preset-vue-app": "^1.2.1",
"babel-runtime": "^6.26.0",
"cross-env": "^5.0.5",
"css-loader": "^0.28.5",
"eslint": "^4.5.0",
"eslint-plugin-html": "^3.2.0",
"eslint-plugin-vue": "^3.8.0",
"file-loader": "^0.11.2",
"style-loader": "^0.18.2",
"uglifyjs-webpack-plugin": "^0.4.6",
"url-loader": "^0.5.9",
"vue-loader": "^13.0.4",
"vue-template-compiler": "^2.4.2",
"vue-types": "^1.0.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
}
}