-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 3.8 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
{
"name": "demo",
"version": "0.0.0",
"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": "yarn clean && yarn build-natural && yarn build-natural-editor",
"build-natural": "ng build natural && cp -rv README.md dist/natural/ && cd dist/natural && yarn version --no-git-tag-version --new-version `git describe --tags --always`",
"build-natural-editor": "ng build natural-editor && cd dist/natural-editor && yarn version --no-git-tag-version --new-version `git describe --tags --always`",
"build-demo": "yarn build-natural && yarn build-natural-editor && ng build demo --aot --base-href /natural/ && 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 && (yarn unlink ; yarn link) && cd ../natural-editor && (yarn unlink ; yarn link)",
"prettier": "./node_modules/.bin/prettier --write ."
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.3",
"@angular/cdk": "^18.2.3",
"@angular/common": "^18.2.3",
"@angular/compiler": "^18.2.3",
"@angular/core": "^18.2.3",
"@angular/forms": "^18.2.3",
"@angular/localize": "^18.2.3",
"@angular/material": "^18.2.3",
"@angular/platform-browser": "^18.2.3",
"@angular/platform-browser-dynamic": "^18.2.3",
"@angular/router": "^18.2.3",
"@apollo/client": "^3.11.8",
"@ecodev/natural-layout": "^2.0.2",
"@graphql-tools/mock": "^9.0.3",
"apollo-angular": "^7.2.0",
"crypto-es": "^2.1.0",
"extract-files": "^13.0.0",
"graphql": "^16.9.0",
"lodash-es": "^4.17.21",
"prosemirror-commands": "^1.6.1",
"prosemirror-dropcursor": "^1.8.1",
"prosemirror-gapcursor": "^1.3.2",
"prosemirror-history": "^1.4.1",
"prosemirror-inputrules": "^1.4.0",
"prosemirror-keymap": "^1.2.2",
"prosemirror-menu": "^1.2.4",
"prosemirror-model": "^1.23.0",
"prosemirror-schema-basic": "^1.2.3",
"prosemirror-schema-list": "^1.4.1",
"prosemirror-state": "^1.4.3",
"prosemirror-tables": "^1.5.0",
"prosemirror-view": "^1.34.3",
"rxjs": "^7.8.1",
"tslib": "^2.6.3",
"type-fest": "^4.21.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.3",
"@angular/cli": "^18.2.3",
"@angular/compiler-cli": "^18.2.3",
"@angular/language-service": "^18.2.3",
"@playwright/test": "^1.45.1",
"@types/jasmine": "~5.1.4",
"@types/jasminewd2": "^2.0.13",
"@types/lodash-es": "^4.17.12",
"@types/node": "^16.0",
"angular-eslint": "18.1.0",
"eslint": "^9.6.0",
"jasmine-core": "~5.1.2",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.3",
"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": "^18.1.0",
"postcss": "^8.4.39",
"prettier": "3.3.3",
"prettier-plugin-css-order": "^2.1.2",
"ts-node": "^10.9.2",
"typescript": "~5.5.3",
"typescript-eslint": "8.0.0-alpha.38"
}
}