-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.26 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.26 KB
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
{
"name": "angular-stl-model-viewer",
"version": "0.0.0",
"license": "MIT",
"bugs": "https://github.com/codaline-io/angular-stl-model-viewer/issues",
"homepage": "https://github.com/codaline-io/angular-stl-model-viewer",
"repository": {
"type": "git",
"url": "https://github.com/codaline-io/angular-stl-model-viewer"
},
"engines": {
"node": "^18.19.1 || ^20.11.1 || >=22.0.0"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:prod": "ng build --project angular-stl-model-viewer --configuration production && cp ./README.md ./dist/angular-stl-model-viewer && cp ./LICENSE ./dist/angular-stl-model-viewer",
"build:deploy": "ng build --configuration production --project examples && gh-pages -d ./dist/examples/browser",
"test": "vitest run --config ./projects/angular-stl-model-viewer/vite.config.ts",
"lint": "eslint ."
},
"dependencies": {
"@angular/animations": "^20.0.0",
"@angular/common": "^20.0.0",
"@angular/compiler": "^20.0.0",
"@angular/core": "^20.0.0",
"@angular/forms": "^20.0.0",
"@angular/platform-browser": "^20.0.0",
"@angular/platform-browser-dynamic": "^20.0.0",
"@angular/router": "^20.0.0",
"rxjs": "^7.8.1",
"three": "^0.170.0",
"tslib": "^2.7.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@analogjs/vite-plugin-angular": "^1.17.1",
"@analogjs/vitest-angular": "^1.17.1",
"@angular-devkit/architect": "^0.2000.0",
"@angular-devkit/build-angular": "^20.0.0",
"@angular-devkit/core": "^20.0.0",
"@angular-devkit/schematics": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@angular/localize": "^20.0.0",
"@eslint/js": "^9.28.0",
"@eslint/json": "^0.12.0",
"@stylistic/eslint-plugin": "^4.4.1",
"@types/node": "^22.15.29",
"@vitest/browser": "^3.2.3",
"angular-eslint": "^19.7.1",
"eslint": "^9.28.0",
"gh-pages": "^6.3.0",
"globals": "^16.2.0",
"jsdom": "^26.1.0",
"ng-packagr": "^20.0.0",
"playwright": "^1.53.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.33.1",
"vitest": "^3.2.3"
},
"overrides": {
"angular-eslint": {
"@angular/core": "$@angular/core"
}
},
"volta": {
"node": "22.15.1"
}
}