forked from formvuelate/formvuelate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.52 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
{
"name": "formvuelate-monorepo",
"description": "Schema Form Generator",
"types": "dist/formvuelate.d.ts",
"author": "Marina Mosti",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "node ./scripts/build.js",
"ts:defs": "node ./scripts/generate-dts.js",
"test:unit": "jest --coverage",
"test:e2e": "cypress open-ct",
"test:e2e:ci": "cypress run-ct",
"lint": "eslint . '**/*.{js,jsx,ts,tsx}' --fix",
"ci:lint": "yarn lint --no-fix",
"test": "yarn lint && yarn test:unit && yarn test:e2e:ci",
"test:unit:watch": "yarn test:unit --watch",
"docs:dev": "cd docs/3.x && yarn dev && cd -",
"docs:build": "cd docs/3.x && yarn build && cd -",
"postversion": "yarn build"
},
"devDependencies": {
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"@cypress/vue": "^3.0.0-beta.1",
"@cypress/webpack-dev-server": "^1.3.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@typescript-eslint/eslint-plugin": "^4.28.5",
"@typescript-eslint/parser": "^4.28.5",
"@vue/cli-service": "^5.0.0-beta.2",
"@vue/compiler-sfc": "^3.0.0-beta.12",
"@vue/eslint-config-standard": "^6.1.0",
"@vue/test-utils": "^2.0.0-rc.16",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^27.0.6",
"chalk": "^4.1.2",
"clean-css": "^5.1.4",
"cypress": "^8.1.0",
"dts-bundle": "^0.7.3",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.0.0-beta.1",
"flush-promises": "^1.0.2",
"fs-extra": "^10.0.0",
"jest": "^27.0.6",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"lerna": "^4.0.0",
"mkdirp": "^1.0.4",
"regenerator-runtime": "^0.13.9",
"rollup": "^2.55.1",
"rollup-plugin-css-only": "^3.1.0",
"rollup-plugin-vue": "^6.0.0",
"stylus": "^0.54.7",
"terser": "^5.7.1",
"ts-jest": "^27.0.4",
"typescript": "^4.3.4",
"vee-validate": "^4.4.8",
"vue": "^3.1.5",
"vue-loader": "^16.0.0-alpha.3",
"vue3-jest": "^27.0.0-alpha.2",
"yup": "^0.32.9"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"bugs": {
"url": "https://github.com/formvuelate/formvuelate"
},
"contributors": [
{
"name": "Marina Mosti"
},
{
"name": "Abdelrahman Awad"
}
],
"engines": {
"node": ">=12.17.0"
}
}