-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
93 lines (93 loc) · 2.82 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
{
"name": "prosemirror-dev-tools",
"version": "4.2.0",
"description": "Dev Tools for ProseMirror",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --out-dir dist/cjs --extensions '.ts,.tsx,.js,.jsx'",
"build:esm": "cross-env BABEL_ENV=esm babel src --out-dir dist/esm --extensions '.ts,.tsx,.js,.jsx'",
"build:types": "tsc --emitDeclarationOnly --declaration --isolatedModules false --outDir dist/types",
"commit": "git-cz",
"lint": "eslint ./src",
"lint:staged": "lint-staged",
"pmm:prepare": "npm run build",
"prebuild": "rimraf ./dist",
"prettier:check": "prettier --check .",
"release:major": "pmm major",
"release:minor": "pmm minor",
"release:patch": "pmm patch",
"start": "vite ./ --port 3000 --host localhost",
"test": "playwright test",
"typecheck": "tsc --noEmit"
},
"keywords": [],
"author": "Stanislav Sysoev <@d4rkr00t>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/d4rkr00t/prosemirror-dev-tools"
},
"dependencies": {
"@babel/runtime": "^7.18.6",
"@compiled/react": "^0.11.1",
"html": "^1.0.0",
"jotai": "^1.10.0",
"jsondiffpatch": "^0.4.1",
"nanoid": "^3.3.8",
"prosemirror-model": ">=1.0.0",
"prosemirror-state": ">=1.0.0",
"react-dock": "^0.6.0",
"react-json-tree": "^0.17.0"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.2",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.19.3",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@compiled/babel-plugin": "^0.17.1",
"@playwright/test": "^1.28.1",
"@types/html": "^1.0.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"@vitejs/plugin-react": "^3.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.31.11",
"lint-staged": "^13.0.4",
"pmm": "^2.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.8.0",
"prosemirror-example-setup": "*",
"prosemirror-schema-basic": "*",
"prosemirror-view": "*",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.3",
"vite": "^4.0.3"
},
"pre-commit": [
"lint:staged"
],
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
}
}