-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.8 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.8 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
81
82
83
84
85
86
87
{
"name": "demo",
"version": "66.0.13",
"license": "MIT",
"scripts": {
"ng": "ng",
"postinstall": "playwright install chromium",
"dev": "ln -fs ../../bin/pre-commit.sh .git/hooks/pre-commit && ng serve",
"test-natural": "ng test natural",
"test-natural-editor": "ng test natural-editor",
"test-demo": "ng test demo",
"lint": "ng lint --max-warnings 0",
"e2e": "playwright test",
"clean": "rm -rf dist/",
"build-lib": "pnpm clean && pnpm build-natural && pnpm build-natural-editor",
"build-natural": "ng build natural && cp -rv README.md dist/natural/ && esbuild projects/natural/bin/i18n-check.mts --outfile=dist/natural/bin/i18n-check.mjs && cd dist/natural && pnpm version --no-git-checks --no-git-tag-version `git describe --tags --always`",
"build-natural-editor": "ng build natural-editor && cd dist/natural-editor && pnpm version --no-git-checks --no-git-tag-version `git describe --tags --always`",
"build-demo": "pnpm build-natural && pnpm build-natural-editor && ng build demo --aot --base-href /natural-demo/ && cp dist/demo/browser/index.html dist/demo/browser/404.html",
"serve-demo": "echo '💡 open http://localhost:8000/natural/' && mkdir -p dist/server && ln -fs ../demo/browser dist/server/natural && php -S localhost:8000 -t dist/server/",
"relink": "cd dist/natural && (pnpm unlink ; pnpm link) && cd ../natural-editor && (pnpm unlink ; pnpm link)",
"prettier": "./node_modules/.bin/prettier --experimental-cli --write ."
},
"private": true,
"packageManager": "pnpm@11.0.1",
"dependencies": {
"@angular/cdk": "^21.2.0",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/localize": "^21.2.0",
"@angular/material": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"@apollo/client": "^3.13.7",
"@ecodev/natural-layout": "^2.0.2",
"@graphql-tools/mock": "^9.0.25",
"apollo-angular": "^11.0.0",
"es-toolkit": "^1.39.10",
"extract-files": "^13.0.0",
"graphql": "^16.11.0",
"prosemirror-commands": "^1.7.1",
"prosemirror-dropcursor": "^1.8.2",
"prosemirror-gapcursor": "^1.3.2",
"prosemirror-history": "^1.4.1",
"prosemirror-inputrules": "^1.5.0",
"prosemirror-keymap": "^1.2.3",
"prosemirror-menu": "^1.2.5",
"prosemirror-model": "^1.25.3",
"prosemirror-schema-basic": "^1.2.4",
"prosemirror-schema-list": "^1.5.1",
"prosemirror-state": "^1.4.3",
"prosemirror-tables": "^1.8.1",
"prosemirror-view": "^1.41.0",
"rxjs": "^7.8.2",
"tslib": "^2.8.1",
"type-fest": "^5.3.1",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular/build": "^21.2.0",
"@angular/cli": "^21.2.0",
"@angular/compiler-cli": "^21.2.0",
"@angular/language-service": "^21.2.0",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.55.0",
"@types/jasmine": "~5.1.9",
"@types/node": "^22.14.1",
"angular-eslint": "^21.1.0",
"esbuild": "^0.28.0",
"eslint": "^9.24.0",
"jasmine-core": "~5.10.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^21.1.0",
"parse5": "^8.0.1",
"postcss": "^8.5.6",
"prettier": "3.8.1",
"prettier-plugin-css-order": "^2.1.2",
"typescript": "~5.9.2",
"typescript-eslint": "^8.29.1"
}
}