forked from Milkdown/milkdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.96 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
{
"name": "milkdown",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=16",
"pnpm": ">=7"
},
"scripts": {
"postinstall": "husky install",
"test": "pnpm test:doc && 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 \"**/{src,website,examples}/**/*.{js,ts,tsx}\"",
"test:doc": "prettier --check \"**/*.md\"",
"test:e2e": "pnpm --filter=@milkdown/e2e run start:test",
"test:e2e:build": "nx build e2e",
"test:e2e:verbose": "pnpm --filter=@milkdown/e2e run start:test:verbose",
"test:e2e:cache": "nx e2e e2e",
"format": "lint-staged",
"watch": "pnpm --filter=./packages --parallel run start",
"doc": "pnpm --filter=@milkdown/website run start",
"doc:preview": "pnpm --filter=@milkdown/website run preview",
"start": "concurrently -n watch,doc \"pnpm watch\" \"pnpm doc\"",
"build:packs": "pnpm --filter=@milkdown/* run build",
"build:doc": "pnpm --filter=@milkdown/website run build",
"build:cache": "nx run-many --target=build --all --parallel",
"build:affected": "nx affected --target=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": {
"@changesets/cli": "^2.22.0",
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@nrwl/cli": "latest",
"@nrwl/nx-cloud": "latest",
"@nrwl/tao": "latest",
"@nrwl/workspace": "latest",
"@nrwl/cypress": "latest",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-json": "^5.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.0",
"@types/node": "^18.0.0",
"@types/rollup-plugin-auto-external": "^2.0.2",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^2.0.0",
"@vitejs/plugin-vue": "^3.0.0",
"@vitejs/plugin-vue-jsx": "^2.0.0",
"@vitest/ui": "^0.25.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"esbuild": "^0.15.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^8.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"git-cz": "^4.7.6",
"husky": "^8.0.0",
"jsdom": "^20.0.0",
"lint-staged": "^13.0.0",
"nx": "latest",
"pathe": "^0.3.2",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup": "^3.0.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-dts": "^5.0.0",
"rollup-plugin-esbuild": "^5.0.0",
"tslib": "^2.4.0",
"typescript": "^4.8.2",
"typescript-styled-plugin": "^0.18.2",
"vite": "^3.2.2",
"vitest": "^0.25.0"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"prosemirror-model",
"prosemirror-state",
"prosemirror-view",
"@babel/core",
"babel-runtime",
"cypress",
"jest",
"vue",
"vite"
],
"allowedVersions": {
"react": "18",
"react-dom": "18"
}
}
}
}