-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
103 lines (103 loc) · 4.63 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "plait",
"workspaces": [
"packages/*"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "npm run build:core && npm run build:common && npm run build:text-plugins && ng build layouts && npm run build:mind && npm run build:flow && npm run build:draw && npm run build:graph-viz && npm run build:angular-text && npm run build:angular-board",
"build:docs": "docgeni build",
"build:core": "ng build core && cpx \"./packages/core/src/**/*.scss\" ./dist/core/",
"build:angular-board": "ng build angular-board && cpx \"./packages/angular-board/src/**/*.scss\" ./dist/angular-board/",
"build:mind": " ng build mind && cpx \"./packages/mind/src/**/*.scss\" ./dist/mind/",
"build:angular-text": "ng build angular-text && cpx \"./packages/angular-text/src/**/*.scss\" ./dist/angular-text/",
"build:flow": "ng build flow && cpx \"./packages/flow/src/**/*.scss\" ./dist/flow/",
"build:draw": "ng build draw && cpx \"./packages/draw/src/**/*.scss\" ./dist/draw/",
"build:common": "ng build common",
"build:text-plugins": "ng build text-plugins",
"build:demo": "ng build demo --configuration production",
"build:graph-viz": "ng build graph-viz && cpx \"./packages/graph-viz/src/**/*.scss\" ./dist/graph-viz/",
"pub:core": "cd dist/core && npm publish --access public",
"pub:text": "cd dist/text && npm publish --access public",
"pub:mind": "cd dist/mind && npm publish --access public",
"pub:layouts": "cd dist/layouts && npm publish --access public",
"pub:flow": "cd dist/flow && npm publish --access public",
"pub:common": "cd dist/common && npm publish --access public",
"pub:draw": "cd dist/draw && npm publish --access public",
"pub:graph-viz": "cd dist/graph-viz && npm publish --access public",
"pub": "./scripts/publish.sh",
"watch": "ng build --watch --configuration development",
"test:mind": "ng test mind",
"test:draw": "ng test draw",
"test:core": "ng test core",
"test:common": "ng test common",
"test:flow": "ng test flow",
"start:docs": "docgeni serve --port 4600",
"ci:test": "ng test --watch=false --progress=false --browsers=ChromeHeadlessCI",
"lint": "ng lint --fix",
"pretty": "pretty-quick --staged",
"copy-to": "cp -r dist/* ../drawnix/node_modules/@plait",
"copy-to-wiki": "cp -r dist/* ../pc-wiki-sky/node_modules/@plait"
},
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/worktile/plait"
},
"dependencies": {
"@angular/animations": "^18.2.0",
"@angular/common": "^18.2.0",
"@angular/compiler": "^18.2.0",
"@angular/core": "^18.2.0",
"@angular/forms": "^18.2.0",
"@angular/platform-browser": "^18.2.0",
"@angular/platform-browser-dynamic": "^18.2.0",
"@angular/router": "^18.2.0",
"graphology": "^0.25.4",
"graphology-layout": "^0.6.1",
"graphology-layout-forceatlas2": "^0.10.1",
"graphology-types": "^0.24.7",
"is-hotkey": "^0.2.0",
"points-on-curve": "^1.0.0",
"roughjs": "^4.5.2",
"rxjs": "~7.8.0",
"slate": "0.103.0",
"slate-angular": "^18.0.1",
"slate-history": "^0.100.0",
"tslib": "^2.3.0",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.0",
"@angular-eslint/builder": "18.3.0",
"@angular-eslint/eslint-plugin": "18.3.0",
"@angular-eslint/eslint-plugin-template": "18.3.0",
"@angular-eslint/schematics": "18.3.0",
"@angular-eslint/template-parser": "18.3.0",
"@angular/cli": "^18.2.0",
"@angular/compiler-cli": "^18.2.0",
"@changesets/changelog-github": "^0.3.0",
"@changesets/cli": "^2.19.0",
"@docgeni/cli": "~2.3.0",
"@docgeni/template": "~2.3.0",
"@types/is-hotkey": "^0.1.6",
"@types/jasmine": "~3.8.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"cpx": "^1.5.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"jasmine-core": "~3.8.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "^18.2.0",
"prettier": "^2.0.0",
"pretty-quick": "^1.10.0",
"typescript": "~5.5.4"
}
}