-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.77 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.77 KB
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
{
"name": "we-socket",
"private": true,
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">= 18"
},
"scripts": {
"lint:tsc": "tsc --noEmit",
"lint": "pnpm lint:tsc && eslint --ext .vue,.js,.ts,.tsx ./packages --max-warnings 0 --cache",
"lint:fix": "eslint --ext .vue,.js,.ts,.tsx ./packages --max-warnings 0 --fix --cache",
"dev:client": "pnpm -C packages/client dev",
"build:client": "pnpm -C packages/client build",
"dev:service": "pnpm -C packages/service dev",
"start:service": "pnpm -C packages/service start",
"dev": "run-p dev:client dev:service",
"build": "pnpm run build:client"
},
"license": "MIT",
"dependencies": {
"@we-socket/config": "workspace:^",
"@we-socket/hooks": "workspace:^",
"@we-socket/utils": "workspace:^",
"@we-socket/types": "workspace:^",
"@babel/runtime": "^7.22.6",
"dayjs": "1.11.10",
"lodash-es": "^4.17.21"
},
"peerDependencies": {
"vue": ">=3.1.0"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/helper-module-imports": "^7.22.9",
"@babel/plugin-transform-modules-commonjs": "^7.22.5",
"@babel/plugin-transform-object-assign": "^7.22.5",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^15.0.0",
"@testing-library/dom": "^8.20.1",
"@types/babel__traverse": "~7.20.6",
"@types/lodash-es": "^4.17.12",
"@types/node": "22.5.1",
"@types/raf": "^3.4.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vitejs/plugin-vue": "^2.3.4",
"@vitejs/plugin-vue-jsx": "^1.3.10",
"@vue/babel-plugin-jsx": "1.2.2",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^2.4.1",
"autoprefixer": "^10.4.14",
"babel-eslint": "^10.1.0",
"cli-color": "^2.0.3",
"clipboard": "^2.0.11",
"codesandbox": "^2.2.3",
"cross-env": "^7.0.3",
"dom-parser": "^1.1.5",
"esbuild": "^0.14.54",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.7.1",
"gray-matter": "^4.0.3",
"husky": "^7.0.4",
"ignore": "^5.2.4",
"jsdom": "^19.0.0",
"lint-staged": "^13.2.3",
"mockdate": "^3.0.5",
"msw": "^1.2.3",
"npm-run-all2": "^7.0.2",
"postcss": "^8.4.26",
"prettier": "2.8.1",
"raf": "^3.4.1",
"rimraf": "^5.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-git"
}
},
"lint-staged": {
"*.{vue,js,jsx,ts,tsx}": [
"prettier --write --cache",
"eslint --fix --cache"
]
}
}