-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 3.22 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
{
"name": "fluid-simulation",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --project example-app",
"start:full": "npm run build:lib && npm start --project example-app -- --port=4404 --host=0.0.0.0",
"start:standalone": "ng serve --project example-app-standalone --host 0.0.0.0",
"build": "npm run build:lib && npm run build:app && npm run build:standalone",
"build:app": "npm run ng build example-app",
"build:standalone": "npm run ng build example-app-standalone",
"build:lib": "npm run ng build fluid-simulation-lib",
"test": "npm run test:lib && npm run test:example && npm run test:standalone",
"test:docker": "npm run test:lib:docker && npm run test:example:docker && npm run test:standalone:docker",
"test:standalone": "ng test example-app-standalone --no-watch --progress=false --code-coverage --browsers ChromeHeadless",
"test:standalone:docker": "ng test example-app-standalone --no-watch --progress=false --code-coverage --browsers ChromeDocker",
"test:lib": "ng test fluid-simulation-lib --no-watch --progress=false --code-coverage --browsers ChromeHeadless",
"test:lib:docker": "ng test fluid-simulation-lib --no-watch --progress=false --code-coverage --browsers ChromeDocker",
"test:example": "ng test example-app --no-watch --progress=false --code-coverage --browsers ChromeHeadless",
"test:example:docker": "ng test example-app --no-watch --progress=false --code-coverage --browsers ChromeDocker",
"lint": "ng lint",
"lint:fix": "ng lint fluid-simulation-lib --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^18.0.2",
"@angular/common": "^18.0.2",
"@angular/compiler": "^18.0.2",
"@angular/core": "^18.0.2",
"@angular/forms": "^18.0.2",
"@angular/platform-browser": "^18.0.2",
"@angular/platform-browser-dynamic": "^18.0.2",
"@angular/router": "^18.0.2",
"core-js": "^3.26.1",
"rxjs": "~7.5.7",
"tslib": "^2.4.1",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^18.0.3",
"@angular-devkit/core": "^18.0.3",
"@angular-devkit/schematics": "^18.0.3",
"@angular-eslint/builder": "18.0.1",
"@angular-eslint/eslint-plugin": "18.0.1",
"@angular-eslint/eslint-plugin-template": "18.0.1",
"@angular-eslint/schematics": "18.0.1",
"@angular-eslint/template-parser": "18.0.1",
"@angular/cli": "^18.0.3",
"@angular/compiler-cli": "^18.0.2",
"@angular/language-service": "^18.0.2",
"@types/jasmine": "~4.3.0",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^18.11.9",
"@types/webgl2": "~0.0.7",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@typescript-eslint/utils": "^7.2.0",
"eslint": "^8.57.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jasmine-core": "~4.5.0",
"jasmine-spec-reporter": "~5.0.2",
"karma": "^6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^18.0.0",
"rxjs-marbles": "^7.0.1",
"ts-node": "~10.9.1",
"typescript": "~5.4.5"
}
}