forked from koumoul-dev/vuetify-jsonschema-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.28 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@koumoul/vjsf",
"version": "2.1.3",
"description": "Generate forms for the vuetify UI library (vuejs) based on annotated JSON schemas.",
"main": "dist/main.js",
"scripts": {
"lint": "eslint --ext js,vue .",
"lint-fix": "eslint --fix --ext js,vue .",
"build": "rm -rf dist && webpack && cp lib/VJsf.css dist/main.css",
"prepare": "npm run lint && npm test && npm run build && npm run doc-build",
"postpublish": "gh-pages-multi deploy -v -s doc/dist -t latest",
"test": "jest",
"test-update": "jest --updateSnapshot",
"dev": "nuxt doc",
"doc-dev": "nuxt doc",
"doc-start": "nuxt build doc && nuxt start doc",
"doc-build": "BASE=/vuetify-jsonschema-form/latest/ nuxt generate doc",
"doc-master": "BASE=/vuetify-jsonschema-form/master/ nuxt generate doc && gh-pages-multi deploy -v -s doc/dist -t master"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"vue"
],
"transform": {
".*\\.(vue)$": "vue-jest",
"^.+\\.js$": "<rootDir>/node_modules/babel-jest"
},
"collectCoverage": true,
"collectCoverageFrom": [
"lib/**/*.{js,vue}"
],
"snapshotSerializers": [
"jest-serializer-vue"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/koumoul-dev/vuetify-jsonschema-form.git"
},
"author": "Alban Mouton <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/koumoul-dev/vuetify-jsonschema-form/issues"
},
"homepage": "https://github.com/koumoul-dev/vuetify-jsonschema-form#readme",
"dependencies": {
"@mdi/js": "^5.5.55",
"ajv": "^6.12.0",
"debounce": "^1.2.0",
"fast-copy": "^2.1.1",
"fast-equals": "^2.0.0",
"markdown-it": "^8.4.2",
"match-all": "^1.2.5",
"object-hash": "^2.1.1",
"property-expr": "^1.5.1",
"vuedraggable": "^2.24.3"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@koumoul/data-fair-search-widget": "^0.3.0",
"@koumoul/gh-pages-multi": "^0.6.0",
"@mdi/font": "^3.8.95",
"@nuxtjs/axios": "^5.9.0",
"@nuxtjs/vuetify": "^1.11.2",
"@toast-ui/vue-editor": "^2.5.1",
"@vue/test-utils": "^1.0.3",
"axios": "^0.21.1",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.2",
"babel-jest": "^26.1.0",
"babel-loader": "^8.0.6",
"babel-polyfill": "^6.26.0",
"brace": "^0.11.1",
"easymde": "^2.14.0",
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.1.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^5.2.3",
"fuse.js": "^3.4.6",
"highlight.js": "^10.4.1",
"hjson": "^3.1.2",
"jest": "^26.1.0",
"jest-serializer-vue": "^2.0.2",
"mini-css-extract-plugin": "^0.8.0",
"nuxt": "^2.13.1",
"random-words": "^1.1.0",
"sanitize-html": "^2.3.0",
"stringify-object": "^3.3.0",
"tiptap-vuetify": "^2.24.0",
"vue-axios": "^2.1.5",
"vue-cropperjs": "^4.2.0",
"vue-jest": "^3.0.5",
"vue-template-compiler": "^2.6.11",
"vuetify": "^2.5.2",
"webpack": "^4.39.0",
"webpack-cli": "^3.3.6",
"yaml": "^1.7.1"
}
}