forked from AbsaOSS/cps-shared-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 2.32 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
{
"name": "cps-shared-ui",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --configuration=production --project=cps-ui-kit",
"build:documentation": "ng build --configuration=production --project=composition --base-href '/cps-shared-ui/'",
"watch": "ng build cps-ui-kit --watch --configuration development",
"test": "npm run cypress:run",
"lint": "eslint \"**/*.ts\"",
"cypress:open": "cypress open --component --browser chrome",
"cypress:run": "cypress run --component",
"generate-json-api": "node ./api-generator/api-generator.js",
"dev:ssr": "ng run composition:serve-ssr",
"serve:ssr": "node dist/composition/server/main.js",
"build:ssr": "ng build && ng run composition:server",
"prerender": "ng run composition:prerender"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/platform-server": "^17.3.0",
"@angular/router": "^17.3.0",
"@angular/ssr": "^17.3.0",
"@types/lodash-es": "^4.17.12",
"express": "^4.18.3",
"lodash-es": "^4.17.21",
"primeng": "^17.11.0",
"rxjs": "~7.8.1",
"tslib": "^2.6.2",
"xlsx": "^0.18.5",
"zone.js": "^0.14.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.0",
"@angular/cli": "~17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@cypress/angular": "^2.0.3",
"@cypress/schematic": "^2.5.1",
"@types/express": "^4.17.21",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"browser-sync": "^3.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"ng-packagr": "^17.3.0",
"prettier": "^3.2.5",
"typedoc": "^0.25.12",
"typescript": "^5.4.2"
},
"optionalDependencies": {
"cypress": "^13.7.0"
}
}