forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 3.5 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
{
"name": "milkdown",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"gh-pages"
],
"scripts": {
"test": "pnpm test:doc && pnpm test:lint && pnpm test:tsc && pnpm test:unit && pnpm test:pw",
"test:unit": "jest --passWithNoTests",
"test:tsc": "tsc --noEmit",
"test:lint": "eslint **/*.{js,ts,tsx}",
"test:doc": "prettier --check \"**/*.md\"",
"test:pw": "pnpm run start:test --filter @milkdown/integration-test",
"format": "lint-staged",
"watch": "tsc --build --watch --verbose",
"doc": "pnpm run start --filter @milkdown/gh-pages",
"start": "concurrently -n watch,doc \"pnpm watch\" \"pnpm doc\"",
"preview": "pnpm run preview --filter @milkdown/gh-pages",
"build:packs": "tsc --build --force --verbose",
"build:doc": "pnpm run build --filter @milkdown/gh-pages",
"postinstall": "husky install && tsc --build --verbose",
"changeset": "changeset",
"release": "changeset publish",
"clear": "rimraf packages/*/{lib,tsconfig.tsbuildinfo,node_modules} && rimraf node_modules",
"cz": "git-cz"
},
"devDependencies": {
"@babel/preset-env": "^7.14.8",
"@changesets/cli": "^2.16.0",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@milkdown/prose": "workspace:*",
"@milkdown/ctx": "workspace:*",
"@milkdown/core": "workspace:*",
"@milkdown/design-system": "workspace:*",
"@milkdown/exception": "workspace:*",
"@milkdown/plugin-indent": "workspace:*",
"@milkdown/plugin-clipboard": "workspace:*",
"@milkdown/plugin-collaborative": "workspace:*",
"@milkdown/plugin-cursor": "workspace:*",
"@milkdown/plugin-diagram": "workspace:*",
"@milkdown/plugin-emoji": "workspace:*",
"@milkdown/plugin-history": "workspace:*",
"@milkdown/plugin-listener": "workspace:*",
"@milkdown/plugin-math": "workspace:*",
"@milkdown/plugin-prism": "workspace:*",
"@milkdown/plugin-slash": "workspace:*",
"@milkdown/plugin-table": "workspace:*",
"@milkdown/plugin-tooltip": "workspace:*",
"@milkdown/plugin-upload": "workspace:*",
"@milkdown/preset-commonmark": "workspace:*",
"@milkdown/preset-gfm": "workspace:*",
"@milkdown/react": "workspace:*",
"@milkdown/theme-nord": "workspace:*",
"@milkdown/utils": "workspace:*",
"@milkdown/vue": "workspace:*",
"@types/jest": "^26.0.22",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vitejs/plugin-react-refresh": "^1.3.3",
"@vitejs/plugin-vue-jsx": "^1.1.5",
"babel-jest": "^27.0.6",
"concurrently": "^6.2.0",
"cross-env": "^7.0.3",
"eslint": "^7.21.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": "^4.3.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"git-cz": "^4.7.6",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.1.2",
"prettier": "^2.4.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.4",
"typescript": "^4.4.3",
"vite": "^2.4.4"
}
}