-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.89 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
{
"name": "@guardian/prosemirror-editor",
"version": "0.2.0",
"description": "Providing implementations of ProseMirror for use the Guardian's tools.",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"types": "dist/declaration/index.d.ts",
"publishConfig": {
"access": "public"
},
"license": "MIT",
"repository": "github:guardian/prosemirror-editor.git",
"scripts": {
"watch": "run-p watch:*",
"build": "vite build && tsc -p tsconfig.declaration.json",
"test": "jest --env=jsdom --runInBand --passWithNoTests",
"test:watch": "jest --env=jsdom --watch --runInBand",
"format": "prettier --write './src/**/*.ts'",
"yalc": "yarn build && yalc push",
"release": "npx changeset"
},
"dependencies": {
"prosemirror-commands": "^1.5.0",
"prosemirror-history": "^1.3.0",
"prosemirror-inputrules": "^1.2.0",
"prosemirror-keymap": "^1.2.0",
"prosemirror-menu": "^1.2.1",
"prosemirror-model": "^1.19.0",
"prosemirror-schema-basic": "^1.2.1",
"prosemirror-schema-list": "^1.2.2",
"prosemirror-state": "^1.4.2",
"prosemirror-view": "^1.30.1",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/jest": "23.3.14",
"@types/lodash": "4.14.198",
"@types/react": "16.9.19",
"@types/react-dom": "16.9.19",
"@types/valid-url": "1.0.4",
"@typescript-eslint/eslint-plugin": "4.22.1",
"@typescript-eslint/parser": "4.22.1",
"@vitejs/plugin-react": "4.0.4",
"eslint": "7",
"jest": "29.6.4",
"jest-environment-jsdom": "29.7.0",
"preact": "10.17.1",
"react": "16.14.0",
"react-dom": "16.14.0",
"ts-jest": "29.0.3",
"tslib": "1.9.3",
"tslint": "5.10",
"tslint-config-prettier": "1.17.0",
"typescript": "4.7.4",
"vite": "4.5.5"
},
"peerDependencies": {
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}