forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.79 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
108
109
110
111
112
{
"name": "@milkdown/monorepo",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=17",
"pnpm": ">=8"
},
"scripts": {
"postinstall": "husky install",
"test": "pnpm test:lint && pnpm test:tsc:cache && pnpm test:unit",
"test:unit": "vitest",
"test:tsc": "pnpm --filter=@milkdown/* run tsc",
"test:tsc:cache": "nx run-many --target=tsc --all --parallel",
"test:lint": "eslint .",
"test:e2e": "pnpm --filter=@milkdown/e2e run start:test",
"test:e2e:build": "nx build @milkdown/e2e",
"test:e2e:verbose": "pnpm --filter=@milkdown/e2e run start:test:verbose",
"format": "lint-staged",
"watch": "pnpm --filter=./packages --parallel run start",
"start": "pnpm --filter=@milkdown/e2e start --host",
"build": "nx run-many --target=build --all --parallel",
"build:affected": "nx affected --target=build",
"build:packs": "pnpm --filter=@milkdown/* run build",
"graph": "nx dep-graph",
"clear": "rimraf 'packages/*/{lib,tsconfig.tsbuildinfo,node_modules,.rollup.cache}' && rimraf node_modules",
"changeset": "changeset",
"release": "changeset publish",
"commit": "git-cz"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.0",
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@nrwl/tao": "16.9.0",
"@nx/cypress": "16.9.0",
"@nx/workspace": "16.9.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.8",
"@types/node": "^18.0.0",
"@types/rollup-plugin-auto-external": "^2.0.2",
"@vitejs/plugin-react": "^4.0.0",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"autoprefixer": "^10.2.5",
"concurrently": "^8.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.19.0",
"eslint": "^8.46.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-tailwindcss": "^3.8.0",
"git-cz": "^4.7.6",
"husky": "^8.0.0",
"jsdom": "^22.0.0",
"lint-staged": "^14.0.0",
"nx": "16.9.0",
"nx-cloud": "16.4.0",
"pathe": "^1.0.0",
"postcss": "^8.2.12",
"rimraf": "^5.0.0",
"rollup": "^3.28.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^6.0.0",
"rollup-plugin-esbuild": "^6.0.0",
"tailwindcss": "^3.2.4",
"tslib": "^2.5.0",
"typescript": "^5.1.3",
"vite": "^4.2.3",
"vitest": "^0.34.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"prosemirror-model",
"prosemirror-state",
"prosemirror-view",
"@babel/core",
"babel-runtime",
"cypress",
"jest",
"vue",
"vite"
],
"allowedVersions": {
"react": "18",
"react-dom": "18",
"typescript": "5"
}
},
"overrides": {
"array-includes": "npm:@nolyfill/array-includes@latest",
"array.prototype.flat": "npm:@nolyfill/array.prototype.flat@latest",
"array.prototype.flatmap": "npm:@nolyfill/array.prototype.flatmap@latest",
"array.prototype.tosorted": "npm:@nolyfill/array.prototype.tosorted@latest",
"has": "npm:@nolyfill/has@latest",
"object.assign": "npm:@nolyfill/object.assign@latest",
"object.entries": "npm:@nolyfill/object.entries@latest",
"object.fromentries": "npm:@nolyfill/object.fromentries@latest",
"object.hasown": "npm:@nolyfill/object.hasown@latest",
"object.values": "npm:@nolyfill/object.values@latest",
"string.prototype.matchall": "npm:@nolyfill/string.prototype.matchall@latest"
}
}
}