-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.4 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.4 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
{
"name": "angular-wasm",
"version": "0.1.0",
"description": "A collection of components and services for Angular to demonstrate integration with WebAssembly",
"license": "MIT",
"scripts": {
"ng": "ng",
"build": "ng build --configuration production",
"wasm": "node scripts/compile-wasm.js && node scripts/wasm-cache-busting.js",
"start": "ng serve",
"lint": "eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --check . --write"
},
"repository": {
"type": "git",
"url": "https://github.com/boyanio/angular-wasm.git"
},
"keywords": [
"Angular",
"WebAssembly",
"JavaScript"
],
"private": false,
"author": "Boyan Mihaylov",
"devDependencies": {
"@angular/build": "^19.2.4",
"@angular/cli": "^19.2.4",
"@angular/common": "^19.2.3",
"@angular/compiler": "^19.2.3",
"@angular/compiler-cli": "^19.2.3",
"@angular/core": "^19.2.3",
"@angular/forms": "^19.2.3",
"@angular/platform-browser": "^19.2.3",
"@angular/platform-browser-dynamic": "^19.2.3",
"@angular/router": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"angular2-ladda": "^5.0.0",
"chalk": "^4.0.0",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"prettier": "^2.8.8",
"rxjs": "^6.5.4",
"typescript": "^5.5.4",
"zone.js": "^0.15.0"
}
}