-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.67 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.67 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
{
"name": "ngx-flow",
"version": "0.0.0",
"author": {
"name": "Martin Nuc",
"email": "martin@nuc.cz"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/flowjs/ngx-flow"
},
"scripts": {
"ng": "npx ng",
"start": "npx ng serve",
"build:lib": "npx ng build ngx-flow",
"build:demo": "npx ng build ngx-flow-demo",
"watch": "npx ng build ngx-flow --watch --configuration development",
"test": "npx ng test ngx-flow",
"test:ci": "npx ng test ngx-flow --watch=false --browsers ChromeHeadless --code-coverage",
"server": "node server/app.js"
},
"private": true,
"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",
"@flowjs/flow.js": "^2.14.1",
"rxjs": "^7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^20.0.0",
"@angular/cli": "^20.0.0",
"@angular/compiler-cli": "^20.0.0",
"@types/express": "^5.0.3",
"@types/flowjs": "^2.13.14",
"@types/jasmine": "~5.1.0",
"angular-eslint": "^20.0.0",
"connect-multiparty": "^2.2.0",
"eslint": "^9.28.0",
"express": "^5.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"karma-spec-reporter": "^0.0.36",
"ng-packagr": "^20.0.0",
"typescript": ">=5.8.0 <5.9.0",
"typescript-eslint": "8.33.1"
}
}