-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.01 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
{
"type": "module",
"version": "0.2.0",
"description": "Form marKup Language",
"packageManager": "[email protected]",
"scripts": {
"nx": "nx",
"build": "nx build",
"build:all": "nx run-many --target=build --all --exclude=@formkl/sandbox",
"typecheck": "nx run-many --target=typecheck --all --exclude=@formkl/sandbox",
"test": "vitest run",
"test:ui": "vitest --ui",
"dev:docs": "vitepress dev docs",
"serve:docs": "vitepress serve docs",
"build:docs": "vitepress build docs",
"prepare-husky": "husky install",
"release": "release-it",
"dev:vue": "pnpm -F ./sandbox dev",
"dev:react": "pnpm -F ./sandbox-react dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imrim12/formkl.git"
},
"keywords": [
"form",
"formkl",
"formjs",
"form",
"generator",
"schema"
],
"author": "thecodeorigin",
"license": "MIT",
"bugs": {
"url": "https://github.com/imrim12/formkl/issues"
},
"homepage": "https://github.com/imrim12/formkl#readme",
"workspaces": [
"packages/**",
"sandbox"
],
"dependencies": {
"@formkl/elemento": "workspace:*",
"@formkl/shared": "workspace:*",
"@formkl/plugin-vite": "workspace:*",
"@formkl/plugin-webpack": "workspace:*",
"@formkl/vue": "workspace:*",
"formkl": "workspace:*",
"vitepress": "1.0.0-alpha.20"
},
"devDependencies": {
"@commitlint/cli": "^17.2.0",
"@commitlint/config-conventional": "^17.2.0",
"@nrwl/nx-cloud": "latest",
"@nrwl/workspace": "latest",
"@release-it/conventional-changelog": "^5.1.1",
"@types/lodash": "^4.14.200",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-vue": "^4.4.0",
"@vitejs/plugin-vue-jsx": "^3.0.2",
"@vitest/ui": "^0.34.6",
"@vue/test-utils": "^2.2.1",
"eslint": "^8.23.1",
"husky": "^8.0.2",
"jsdom": "^20.0.2",
"nx": "latest",
"release-it": "^15.5.0",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vitest": "^0.34.6",
"vue": "^3.3.7",
"vue-tsc": "^1.8.22"
}
}