-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.42 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
{
"name": "rich-content-transformer",
"version": "1.0.9",
"description": "Uses TipTap library to transform HTML to JSON and back",
"license": "ISC",
"author": "OpenDigitalEducation",
"type": "module",
"main": "index.js",
"scripts": {
"build": "npx tsc",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\"",
"format": "pnpm run format:write && pnpm run format:check",
"format:check": "prettier --check 'src/**/*.ts'",
"format:write": "prettier --write 'src/**/*.ts'",
"preinstall": "npx only-allow pnpm",
"lint": "eslint src --ext ts --report-unused-disable-directives --max-warnings 0",
"fix": "eslint src --fix --ext ts --report-unused-disable-directives --max-warnings 0",
"pre-commit": "pnpm lint && pnpm format",
"prepare": "husky install || true",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@edifice.io/tiptap-extensions": "2.0.0",
"@tiptap/core": "2.3.0",
"@tiptap/extension-color": "2.3.0",
"@tiptap/extension-font-family": "2.1.6",
"@tiptap/extension-heading": "2.3.0",
"@tiptap/extension-highlight": "2.3.0",
"@tiptap/extension-image": "2.3.0",
"@tiptap/extension-link": "2.3.0",
"@tiptap/extension-list-item": "2.3.0",
"@tiptap/extension-subscript": "2.3.0",
"@tiptap/extension-superscript": "2.3.0",
"@tiptap/extension-table": "2.3.0",
"@tiptap/extension-table-cell": "2.3.0",
"@tiptap/extension-table-header": "2.3.0",
"@tiptap/extension-table-row": "2.3.0",
"@tiptap/extension-text-align": "2.3.0",
"@tiptap/extension-text-style": "2.3.0",
"@tiptap/extension-typography": "2.3.0",
"@tiptap/extension-underline": "2.3.0",
"@tiptap/html": "2.3.0",
"@tiptap/pm": "2.3.0",
"@tiptap/starter-kit": "2.3.0",
"@types/jsonwebtoken": "^9.0.7",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"global-jsdom": "^9.2.0",
"jsonwebtoken": "^9.0.2",
"prom-client": "^15.1.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.17.6",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"concurrently": "^8.2.2",
"eslint": "8.56.0",
"husky": "^8.0.3",
"nodemon": "^3.1.7",
"prettier": "3.2.4",
"turbo": "1.11.3",
"typescript": "5.3.3"
},
"packageManager": "[email protected]",
"engines": {
"node": "16 || 18"
}
}