-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
113 lines (113 loc) · 4.11 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
108
109
110
111
112
113
{
"name": "@bobaboard/boba-editor",
"version": "0.0.15",
"description": "An advanced text editor based on QuillJS, vaguely inspired by Tumblr's. Created for BobaBoard.",
"main": "dist/main.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.export.json --emitDeclarationOnly && ./node_modules/.bin/webpack --mode production --config webpack.config.cjs --stats-error-details",
"profile": "tsc -p tsconfig.export.json --emitDeclarationOnly && ./node_modules/.bin/webpack --mode production --config webpack.config.cjs --profile --json > stats.json",
"build:dev": "rm -rf dist && tsc -p tsconfig.export.json --emitDeclarationOnly && ./node_modules/.bin/webpack --mode development --config webpack.config.cjs",
"build:force-dev": "rm -rf dist && ./node_modules/.bin/webpack --mode development",
"storybook": "cross-env DEBUG=bobapost:* start-storybook -p 6006",
"storybook:local-embeds": "cross-env STORYBOOK_LOCAL_EMBEDS=true yarn run storybook",
"build-storybook": "build-storybook",
"visual-testing": "backstop test",
"approve-visuals": "backstop approve",
"test": "jest tests/.*\\.test\\.tsx?",
"test:watch": "yarn run test -- --watch",
"cypress": "cypress open --component",
"cypress:ci": "cypress run --component"
},
"repository": {
"type": "git",
"url": "git+https://github.com/essential-randomness/boba-editor.git"
},
"author": "Essential Randomness",
"license": "MIT",
"bugs": {
"url": "https://github.com/essential-randomness/boba-editor/issues"
},
"homepage": "https://github.com/essential-randomness/boba-editor#readme",
"dependencies": {
"debug": "^4.1.1",
"dompurify": "^2.3.0",
"node-html-parser": "^5.2.0",
"parchment": "^1.1.4",
"quill": "^1.3.7",
"quill-delta-to-html": "^0.12.0",
"quill-magic-url": "^2.0.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-tenor": "^2.1.1",
"react-tiny-popover": "6.0.5",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@babel/cli": "^7.17.10",
"@babel/core": "^7.18.5",
"@babel/plugin-proposal-class-properties": "^7.17.12",
"@babel/plugin-proposal-optional-chaining": "^7.17.12",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@cypress/react": "^6.0.0",
"@cypress/webpack-dev-server": "^2.0.0",
"@storybook/addon-a11y": "6.5.9",
"@storybook/addon-actions": "6.5.9",
"@storybook/addon-controls": "6.5.9",
"@storybook/addon-links": "6.5.9",
"@storybook/addon-viewport": "6.5.9",
"@storybook/addons": "^6.5.9",
"@storybook/builder-webpack5": "6.5.9",
"@storybook/manager-webpack5": "6.5.9",
"@storybook/react": "6.5.9",
"@storybook/testing-react": "^1.3.0",
"@testing-library/cypress": "^8.0.3",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "12.1.2",
"@testing-library/user-event": "^14.2.1",
"@types/classnames": "^2.2.10",
"@types/dompurify": "^2.2.3",
"@types/jest": "^28.1.3",
"@types/node": "^18.0.0",
"@types/quill": "1.3.7",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.2",
"@types/uuid": "^8.3.0",
"babel-loader": "^8.2.5",
"base64-image-loader": "^1.2.1",
"cross-env": "^7.0.2",
"css-loader": "6.7.1",
"cypress": "^10.2.0",
"cypress-wait-until": "^1.7.2",
"eslint-plugin-jsx-a11y": "^6.5.1",
"file-loader": "^6.2.0",
"html-loader": "3.1.2",
"html-webpack-plugin": "^5.5.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"mini-css-extract-plugin": "^2.6.1",
"storybook-css-modules-preset": "^1.1.1",
"style-loader": "3.3.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4",
"typescript-plugin-css-modules": "^3.4.0",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.9.2"
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"resolutions": {
"**/@types/react": "^17.0.2",
"@storybook/react/webpack": "^5"
},
"keywords": [
"editor",
"quilljs"
]
}