forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.94 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
{
"name": "milkdown",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=10",
"pnpm": ">=3"
},
"scripts": {
"postinstall": "husky install",
"test": "pnpm test:doc && pnpm test:lint && pnpm test:tsc && pnpm test:unit",
"test:unit": "vitest",
"test:tsc": "pnpm --filter=./packages run tsc",
"test:lint": "eslint \"**/{src,gh-pages,examples}/**/*.{js,ts,tsx}\"",
"test:doc": "prettier --check \"**/*.md\"",
"test:e2e": "pnpm run start:test --filter @milkdown/e2e",
"format": "lint-staged",
"watch": "pnpm --filter=./packages --parallel run start",
"doc": "pnpm run start --filter @milkdown/gh-pages",
"doc:preview": "pnpm run preview --filter @milkdown/gh-pages",
"start": "concurrently -n watch,doc \"pnpm watch\" \"pnpm doc\"",
"build:packs": "pnpm --filter=./packages run build",
"build:doc": "pnpm run build --filter @milkdown/gh-pages",
"clear": "rimraf 'packages/*/{lib,tsconfig.tsbuildinfo,node_modules,.rollup.cache}' && rimraf node_modules",
"changeset": "changeset",
"release": "changeset publish",
"commit": "git-cz"
},
"devDependencies": {
"@changesets/cli": "^2.16.0",
"@commitlint/cli": "^16.0.0",
"@commitlint/config-conventional": "^16.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/node": "^17.0.5",
"@types/rollup-plugin-auto-external": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"@vitejs/plugin-react-refresh": "^1.3.3",
"@vitejs/plugin-vue-jsx": "^1.1.5",
"@vitest/ui": "^0.5.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"git-cz": "^4.7.6",
"husky": "^7.0.0",
"jsdom": "^19.0.0",
"lint-staged": "^12.0.0",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"rollup": "^2.61.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.4.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"vite": "^2.7.13",
"vitest": "^0.5.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"prosemirror-model",
"prosemirror-state",
"prosemirror-view",
"@babel/core",
"babel-runtime"
],
"allowedVersions": {
"react": "17",
"react-dom": "17"
}
}
}
}