-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.67 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
{
"name": "cosim",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"build:lib": "ng build pandemic-simulator-lib",
"compile:element": "ng build pandemic-simulator --prod --output-hashing=none --progress=false",
"concat:element": "cat dist/pandemic-simulator/runtime-es5.js dist/pandemic-simulator/polyfills-es5.js dist/pandemic-simulator/main-es5.js > dist/pandemic-simulator/element.js",
"clean:element": "rm dist/pandemic-simulator/*es*.js dist/pandemic-simulator/index.html",
"build:element": "npm run compile:element && npm run concat:element && npm run clean:element",
"build:page": "ng build --prod --progress=false",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.0.9",
"@angular/common": "~10.0.9",
"@angular/compiler": "~10.0.9",
"@angular/core": "~11.0.5",
"@angular/elements": "^10.0.9",
"@angular/forms": "~10.0.9",
"@angular/platform-browser": "~10.0.9",
"@angular/platform-browser-dynamic": "~10.0.9",
"@angular/router": "~10.0.9",
"document-register-element": "^1.7.2",
"rxjs": "~6.6.2",
"seedrandom": "^3.0.5",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.1.4",
"@angular-devkit/build-ng-packagr": "~0.1000.5",
"@angular/cli": "~15.1.4",
"@angular/compiler-cli": "~10.0.9",
"@angular/language-service": "~10.0.9",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"ng-packagr": "^10.1.1",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~3.9.7"
}
}