-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
92 lines (92 loc) · 3.31 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
{
"name": "canvas",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"setup": "npx rimraf node_modules package-lock.json dist tmp yarn.lock && yarn config set ignore-engines true && ns package-manager set npm && yarn",
"start": "nps",
"add": "nx g @nativescript/plugin-tools:add-package",
"add-angular": "nx g @nativescript/plugin-tools:add-angular",
"config": "nx g @nativescript/plugin-tools:config",
"publish-packages": "nx g @nativescript/plugin-tools:publish",
"sync-packages-with-demos": "nx g @nativescript/plugin-tools:sync-packages-with-demos",
"postinstall": "husky install && npx ts-patch install",
"remove-package": "nx g @nativescript/plugin-tools:remove-package",
"add-demo": "nx g @nativescript/plugin-tools:add-demo",
"build.canvas.android.release": "nx run canvas:build.native.android.release",
"build.canvas.android.debug": "nx run canvas:build.native.android.debug",
"build.canvas.ios.release": "nx run canvas:build.native.ios.release",
"build.canvas.ios.debug": "nx run canvas:build.native.ios.debug",
"build.canvas.ios.framework.release": "nx run canvas:build.native.ios.framework.release",
"build.canvas.ios.framework.debug": "nx run canvas:build.native.ios.framework.debug",
"build.canvas.svg.ios.framework.release": "nx run canvas-svg:build.native.ios.framework.release",
"build.canvas.svg.ios.framework.debug": "nx run canvas-svg:build.native.ios.framework.debug"
},
"private": true,
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.0",
"@angular/animations": "^18.0.0",
"@angular/common": "^18.0.0",
"@angular/compiler": "^18.0.0",
"@angular/compiler-cli": "^18.0.0",
"@angular/core": "^18.0.0",
"@angular/forms": "^18.0.0",
"@angular/platform-browser": "^18.0.0",
"@angular/platform-browser-dynamic": "^18.0.0",
"@angular/router": "^18.0.0",
"@formatjs/intl-getcanonicallocales": "~2.5.3",
"@formatjs/intl-locale": "~4.2.5",
"@formatjs/intl-numberformat": "~8.14.5",
"@formatjs/intl-pluralrules": "~5.3.5",
"@nativescript/angular": "^18.0.0",
"@nativescript/core": "~8.8.0",
"@nativescript/plugin-tools": "5.4.1",
"@nativescript/types": "~8.8.0",
"@nativescript/webpack": "~5.0.22",
"@ngtools/webpack": "^18.0.0",
"@pixi-essentials/svg": "2.0.1",
"@pixi/devtools": "~2.0.1",
"@types/three": "~0.167.2",
"@xmldom/xmldom": "0.8.10",
"babylonjs": "7.22.2",
"babylonjs-materials": "7.22.2",
"canvg": "^4.0.1",
"chart.js": "^4.4.0",
"d3": "^7.8.4",
"dotenv": "~16.0.3",
"eslint": "~9.8.0",
"eslint-config-prettier": "~9.1.0",
"gl-matrix": "^3.4.3",
"husky": "~9.0.0",
"matter-js": "^0.19.0",
"nativescript-theme-core": "~1.0.4",
"nativescript-vue": "~2.9.0",
"nativescript-vue-template-compiler": "~2.9.0",
"ng-packagr": "^18.0.0",
"phaser": "3.80.1",
"phaser-ce": "^2.20.0",
"pixi-filters": "~6.0.4",
"pixi-viewport": "^5.0.2",
"pixi.js": "~8.3.3",
"playcanvas": "^1.66.1",
"query-selector": "2.0.0",
"react-nativescript": "^4.0.0",
"rimraf": "^3.0.2",
"rxjs": "~7.8.0",
"svelte-native": "^1.0.5",
"teapot": "^1.0.0",
"three": "~0.169.0",
"three-stdlib": "~2.33.0",
"typescript": "~5.5.0",
"util": "~0.12.5",
"vexflow": "^4.2.3",
"wgpu-matrix": "^3.0.1",
"zen-3d": "0.0.3",
"zone.js": "~0.14.0"
},
"lint-staged": {
"**/*.{js,ts,scss,json,html}": [
"npx prettier --write"
]
}
}