-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.4 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.4 KB
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
{
"version": "0.2.11",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build --format cjs --transpileOnly",
"serve": "npm run --prefix example start",
"serve:ci": "npm run --prefix example start:ci",
"cy:open": "cypress open",
"cy:run": "cypress run --config video=false",
"test:ci": "start-server-and-test serve:ci http://localhost:1234/index.html cy:run",
"test": "start-server-and-test serve http://localhost:1234/index.html cy:open",
"lint": "tsdx lint src"
},
"peerDependencies": {
"react": ">=16"
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "@futurelearn/markdown-editor",
"author": "Sam McTaggart",
"dependencies": {
"classnames": "^2.2.6",
"highlight.js": "^10.7.3",
"lodash": "^4.17.15",
"lodash-es": "^4.17.15",
"lowlight": "^1.20.0",
"prosemirror-commands": "^1.1.3",
"prosemirror-history": "^1.1.3",
"prosemirror-inputrules": "^1.1.2",
"prosemirror-keymap": "^1.1.3",
"prosemirror-markdown": "^1.4.4",
"prosemirror-model": "^1.0.0",
"prosemirror-schema-list": "^1.1.2",
"prosemirror-state": "^1.3.2",
"prosemirror-tables": "^1.0.0",
"prosemirror-utils": "^0.9.6",
"prosemirror-view": "^1.14.4"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@types/classnames": "^2.2.10",
"@types/codemirror": "^0.0.82",
"@types/highlight.js": "^9.12.3",
"@types/jest": "^24.0.25",
"@types/lodash": "^4.14.149",
"@types/lowlight": "^0.0.0",
"@types/prosemirror-commands": "^1.0.1",
"@types/prosemirror-history": "^1.0.1",
"@types/prosemirror-inputrules": "^1.0.2",
"@types/prosemirror-keymap": "^1.0.1",
"@types/prosemirror-markdown": "^1.0.3",
"@types/prosemirror-schema-list": "^1.0.1",
"@types/prosemirror-state": "^1.2.3",
"@types/prosemirror-view": "^1.11.2",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.4",
"cypress": "^3.8.2",
"cypress-file-upload": "^3.5.3",
"postcss": "^8.3.7",
"postcss-import": "^14.0.2",
"react": "^16.13.0",
"react-dom": "^16.13.0",
"rollup-plugin-postcss": "^4.0.1",
"sass": "^1.42.1",
"start-server-and-test": "^1.10.10",
"tsdx": "^0.14.1",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
}
}