This repository has been archived by the owner on Mar 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
82 lines (82 loc) · 2.84 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
75
76
77
78
79
80
81
82
{
"name": "preboot",
"version": "8.0.0",
"description": "Record server view events and play back to Angular client view",
"scripts": {
"clean": "rimraf out-tsc dist/* dist-tarball/*",
"build": "ng-packagr --project src/lib/ng-package.json --config src/lib/tsconfig.lib.json",
"postbuild": "cp README.md dist/.",
"e2e": "cd integration && yarn e2e",
"build-test": "ngc -p src/lib/tsconfig.spec.json",
"build-test:watch": "ngc -p src/lib/tsconfig.spec.json -w",
"pretest": "yarn build-test",
"test": "concurrently \"yarn build-test:watch\" \"karma start karma.conf.js\"",
"pretest:once": "yarn build-test",
"test:once": "karma start karma.conf.js --single-run",
"preintegration": "yarn build && cd integration && yarn clean && npm install",
"integration": "yarn integration:aot && yarn integration:jit",
"integration:jit": "cd integration && yarn e2e",
"integration:aot": "cd integration && yarn e2e:aot",
"postinstall": "webdriver-manager update --gecko false --standalone false $CHROMEDRIVER_VERSION_ARG",
"lint": "tslint -c tslint.json --project ./tsconfig.json -t verbose"
},
"author": "Jeff Whelpley",
"license": "MIT",
"contributors": [
"Tobias Bosch <[email protected]>",
"PatrickJS <[email protected]>",
"Jeff Whelpley <[email protected]>"
],
"devDependencies": {
"@angular/animations": "^11.0.0",
"@angular/common": "^11.0.0",
"@angular/compiler": "^11.0.0",
"@angular/compiler-cli": "^11.0.0",
"@angular/core": "^11.0.0",
"@angular/platform-browser": "^11.0.0",
"@angular/platform-browser-dynamic": "^11.0.0",
"@angular/platform-server": "^11.0.0",
"@types/express": "^4.16.0",
"@types/jasmine": "^2.8.15",
"@types/minimatch": "^3.0.3",
"@types/node": "^8.10.39",
"@types/uglify-js": "^2.6.32",
"ajv": "^5.5.2",
"camelcase": "^4.1.0",
"concurrently": "^3.6.1",
"express": "^4.16.4",
"glob": "^7.1.3",
"jasmine": "^3.6.3",
"jasmine-core": "^3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "^6.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-sourcemap-loader": "^0.3.8",
"minimatch": "^3.0.4",
"ng-packagr": "^11.0.3",
"protractor": "^5.4.2",
"puppeteer": "^10.4.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^2.6.3",
"rxjs": "^6.3.3",
"systemjs": "0.19.43",
"ts-loader": "^3.5.0",
"ts-node": "^9.1.1",
"tslib": "^2.1.0",
"tslint": "^5.12.1",
"typescript": "~4.0.5",
"uglify-js": "^3.4.9",
"webdriver-manager": "^12.1.1",
"zone.js": "~0.10.3"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/preboot"
},
"bugs": {
"url": "https://github.com/angular/preboot/issues"
},
"homepage": "https://github.com/angular/preboot"
}