-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 3.08 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
{
"name": "ai-table",
"version": "0.0.15",
"workspaces": [
"packages/*"
],
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"start-ws": "npx ts-node ./backend/src/index",
"build": "npm run build:packages && npm run sync-styles",
"build:packages": "ts-node --project ./scripts/tsconfig.json ./scripts/build-packages.ts",
"build:demo": "ng build demo --configuration production",
"build:ws": "tsc -p tsconfig.backend.json",
"sync-styles": "ts-node --project ./scripts/tsconfig.json ./scripts/sync-styles.ts",
"release": "npm run build && wpm release --release-branch-format release-auto-v{{version}}",
"release-next": "npm run build && wpm release --release-branch-format release-auto-next-v{{version}}",
"release-manual": "npm run build && wpm release",
"release-next-manual": "npm run build && wpm release --release-branch-format release-next-v{{version}}",
"watch": "ng build --watch --configuration development",
"pub": "wpm publish && npm run pub-only",
"pub-next": "wpm publish && npm run pub-next-only",
"pub-only": "ts-node --project ./scripts/tsconfig.json ./scripts/npm-publish.ts",
"pub-next-only": "ts-node --project ./scripts/tsconfig.json ./scripts/npm-publish.ts --next",
"test": "ng test grid"
},
"repository": {
"type": "git",
"url": "https://github.com/worktile/ai-table"
},
"dependencies": {
"@angular/animations": "^18.1.4",
"@angular/cdk": "^18.1.4",
"@angular/common": "^18.1.4",
"@angular/compiler": "^18.1.4",
"@angular/core": "^18.1.4",
"@angular/forms": "^18.1.4",
"@angular/platform-browser": "^18.1.4",
"@angular/platform-browser-dynamic": "^18.1.4",
"@angular/router": "^18.1.4",
"@tethys/cdk": "^18.0.5",
"@tethys/icons": "^1.4.69",
"bson-objectid": "^2.0.4",
"date-fns": "^3.6.0",
"grapheme-splitter": "^1.0.4",
"immer": "^10.0.3",
"ngx-tethys": "^18.0.5",
"konva": "^9.3.14",
"lodash": "^4.17.21",
"lru-cache": "^11.0.0",
"npm": "^10.8.1",
"rxjs": "~7.8.0",
"tslib": "^2.6.3",
"zone.js": "~0.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.1.4",
"@angular/cli": "^18.1.4",
"@angular/compiler-cli": "^18.1.4",
"@types/jasmine": "~5.1.4",
"@types/lodash": "^4.17.7",
"@types/node": "^10.14.9",
"@types/ws": "^7.4.7",
"@worktile/pkg-manager": "^0.1.0",
"chalk": "^2.4.2",
"cpx": "^1.5.0",
"jasmine-core": "~5.2.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": "^18.0.0",
"prettier": "^3.3.2",
"ts-node": "^10.9.2",
"typescript": "~5.4.2",
"ws": "8.0.0",
"y-websocket": "^2.0.3",
"yjs": "^13.6.16"
}
}