-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
executable file
·73 lines (73 loc) · 2.64 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
{
"name": "tip-tap-angular-wrapper-project",
"version": "0.0.0",
"scripts": {
"build:pages": "ng build --configuration production --base-href '/ngx-tiptap-editor/'",
"build": "ng build --configuration production",
"build:library": "ng build --configuration production ngx-tiptap-editor",
"start": "ng serve --host 0.0.0.0",
"start:prod": "ng serve --configuration production --port 4001",
"e2e": "ng e2e",
"dev:ssr": "ng run tip-tap-example:serve-ssr",
"serve:ssr": "node dist/tip-tap-example/server/main.js",
"build:ssr": "ng build --configuration production && ng run tip-tap-example:server:production",
"prerender": "ng run tip-tap-example:prerender"
},
"private": true,
"resolutions": {
"prosemirror-model": "^1.14.3",
"prosemirror-view": "^1.19.3"
},
"dependencies": {
"@angular/animations": "~13.1.1",
"@angular/common": "~13.1.1",
"@angular/compiler": "~13.1.1",
"@angular/core": "~13.1.1",
"@angular/forms": "~13.1.1",
"@angular/platform-browser": "~13.1.1",
"@angular/platform-browser-dynamic": "~13.1.1",
"@angular/platform-server": "~13.1.1",
"@angular/router": "~13.1.1",
"@babel/plugin-transform-runtime": "^7.14.3",
"@nguniversal/express-engine": "^13.0.1",
"@tiptap/core": "^2.0.0-beta.160",
"@tiptap/extension-character-count": "^2.0.0-beta.24",
"@tiptap/extension-color": "^2.0.0-beta.9",
"@tiptap/extension-link": "^2.0.0-beta.35",
"@tiptap/extension-mention": "^2.0.0-beta.91",
"@tiptap/extension-task-item": "^2.0.0-beta.30",
"@tiptap/extension-task-list": "^2.0.0-beta.26",
"@tiptap/extension-text-align": "^2.0.0-beta.29",
"@tiptap/extension-text-style": "^2.0.0-beta.23",
"@tiptap/extension-underline": "^2.0.0-beta.22",
"@tiptap/starter-kit": "^2.0.0-beta.168",
"@tiptap/suggestion": "^2.0.0-beta.86",
"express": "^4.15.2",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.1.2",
"@angular/cli": "~13.1.2",
"@angular/compiler-cli": "~13.1.1",
"@nguniversal/builders": "^13.0.1",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.6.0",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.9",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^13.1.2",
"protractor": "~7.0.0",
"source-map-explorer": "^2.5.2",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.5.4"
}
}