-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
76 lines (76 loc) · 2.57 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
{
"name": "ngx-three",
"version": "0.36.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-three",
"build:prod": "ng build ngx-three --configuration production",
"build:demo": "ng build ngx-three-demo --configuration production --base-href /ngx-three/",
"test": "ng test",
"test-headless": "ng test --watch=false --browsers=ChromeHeadless",
"lint": "ng lint",
"e2e": "ng e2e",
"copy:docs": "(cp README.md dist/ngx-three/ || copy README.md dist\\ngx-three)",
"package": "ng build --configuration production ngx-three && npm run copy:docs",
"format": "prettier-eslint --write \"{,!(node_modules|dist)/**/}*.{ts,tsx}\""
},
"private": true,
"dependencies": {
"@angular/animations": "^18.2.11",
"@angular/cdk": "^18.2.12",
"@angular/common": "^18.2.11",
"@angular/compiler": "^18.2.11",
"@angular/core": "^18.2.11",
"@angular/forms": "^18.2.11",
"@angular/material": "^18.2.12",
"@angular/platform-browser": "^18.2.11",
"@angular/platform-browser-dynamic": "^18.2.11",
"@angular/router": "^18.2.11",
"@stackblitz/sdk": "^1.9.0",
"@types/webxr": "^0.5.5",
"highlight.js": "^11.9.0",
"lil-gui": "^0.18.2",
"ngx-highlightjs": "^11.0.0-beta.1",
"normalize.css": "^8.0.1",
"rxjs": "~7.8.1",
"simplex-noise": "^4.0.1",
"three": "~0.171.0",
"tslib": "^2.6.2",
"zone.js": "~0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.2.11",
"@angular-eslint/builder": "~18.4.0",
"@angular-eslint/eslint-plugin": "~18.4.0",
"@angular-eslint/eslint-plugin-template": "~18.4.0",
"@angular-eslint/schematics": "^18.4.0",
"@angular-eslint/template-parser": "~18.4.0",
"@angular/cli": "^18.2.11",
"@angular/compiler-cli": "^18.2.11",
"@types/jasmine": "^4.3.5",
"@types/node": "^20.5.3",
"@types/three": "^0.171.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"acorn": ">=8",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsdoc": "^46.5.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine-core": "^5.1.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.2",
"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.2.1",
"prettier": "^3.0.2",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.4.5",
"utility-types": "^3.10.0"
}
}