This repository has been archived by the owner on May 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 2.37 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
{
"name": "oce-angular-minimal-sample",
"version": "22.4.2",
"description": "A simple site built using Angular and Oracle Content Management.",
"author": "Oracle America, Inc.",
"license": "UPL-1.0",
"repository": {
"type": "git",
"url": "https://github.com/oracle-samples/oce-angular-minimal-sample.git"
},
"scripts": {
"ng": "ng",
"dev": "ng run oce-angular-minimal-sample:serve-ssr",
"buildPath": "ng build --configuration production --base-href /samples/oce-angular-minimal-sample/ && ng run oce-angular-minimal-sample:server:production",
"build": "ng build --configuration production && ng run oce-angular-minimal-sample:server:production",
"start": "node dist/server/main.js",
"prerender": "ng run oce-angular-minimal-sample:prerender",
"lint": "eslint ./*.js ./*.ts ./src --ext .js,.ts && markdownlint-cli2 *.md"
},
"dependencies": {
"@angular/animations": "~12.2.10",
"@angular/common": "~12.2.10",
"@angular/compiler": "~12.2.10",
"@angular/compiler-cli": "~12.2.10",
"@angular/core": "~12.2.10",
"@angular/platform-browser": "~12.2.10",
"@angular/platform-browser-dynamic": "~12.2.10",
"@angular/platform-server": "~12.2.10",
"@angular/router": "~12.2.10",
"@nguniversal/express-engine": "~12.1.1",
"@oracle/content-management-sdk": "^1.4.0",
"express": "~4.17.1",
"https-proxy-agent": "~5.0.0",
"node-fetch": "~2.6.1",
"rxjs": "~6.6.3",
"tslib": "~2.0.0",
"xss": "~1.0.8",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-builders/custom-webpack": "~12.1.3",
"@angular-devkit/build-angular": "~12.2.10",
"@angular-eslint/builder": "~12.5.0",
"@angular-eslint/eslint-plugin": "~12.5.0",
"@angular-eslint/eslint-plugin-template": "~12.5.0",
"@angular-eslint/schematics": "~12.5.0",
"@angular-eslint/template-parser": "~12.5.0",
"@angular/cli": "~12.2.10",
"@nguniversal/builders": "~12.1.1",
"@types/express": "~4.17.13",
"@typescript-eslint/eslint-plugin": "~5.0.0",
"@typescript-eslint/parser": "~5.0.0",
"dotenv": "~10.0.0",
"eslint": "~7.11.0",
"eslint-config-airbnb-base": "~14.2.0",
"eslint-plugin-header": "~3.1.1",
"eslint-plugin-import": "~2.22.1",
"markdownlint": "~0.24.0",
"markdownlint-cli2": "~0.3.2"
},
"browser": {
"assert": false,
"http": false,
"https": false
}
}