forked from Jomorx/molix-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 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
{
"name": "molix-ui",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "pnpm -C play dev",
"test": "vitest",
"docs": "pnpm --filter @molix/docs docs",
"docs:build": "pnpm --filter @molix/docs docs:build",
"prepare": "husky install",
"commit": "git add . && git-cz",
"build": "vue-tsc && vite build",
"format": "prettier --write .",
"lint": "eslint --ext .js,.vue,.ts .",
"typecheck:web": "vue-tsc -p tsconfig.web.json --composite false --noEmit",
"typecheck:play": "vue-tsc -p tsconfig.play.json --composite false --noEmit",
"typecheck:vitest": "vue-tsc -p tsconfig.vitest.json --composite false --noEmit",
"check": "pnpm run typecheck:web && pnpm run typecheck:play && pnpm run typecheck:vitest && pnpm run typecheck:web"
},
"dependencies": {
"@molix/components": "workspace:^0.0.1",
"@molix/constants": "workspace:^1.0.0",
"@molix/hooks": "workspace:^1.0.0",
"@molix/theme": "workspace:^1.0.0",
"@molix/utils": "workspace:^1.0.0",
"@types/jsdom": "^21.1.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.14.0",
"@types/sass": "^1.43.1",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/test-utils": "^2.3.0",
"@vueuse/core": "^9.13.0",
"jsdom": "^21.1.0",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"resize-observer-polyfill": "^1.5.1",
"sass": "^1.58.3",
"unplugin-vue-macros": "^1.9.1",
"vitest": "^0.29.1",
"vue": "^3.2.45"
},
"devDependencies": {
"@types/lodash-es": "^4.17.6",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"commitizen": "^4.3.0",
"commitlint-config-cz": "^0.13.3",
"cz-conventional-changelog": "^3.3.0",
"cz-customizable": "^7.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"typescript": "^4.9.3",
"vite": "^4.1.3",
"vite-plugin-eslint": "^1.8.1",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.1.5"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
}
},
"keywords": [],
"author": "",
"license": "ISC"
}