-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.98 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.98 KB
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
{
"name": "ngx-drupal8-rest-demo",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"build_lib": "ng build ngx-drupal8-rest",
"npm_pack": "cd dist/ngx-drupal8-rest && npm pack",
"npm_publish": "cd dist/ngx-drupal8-rest && npm publish",
"copy-license": "cp ./LICENSE ./dist/ngx-drupal8-rest",
"copy-readme": "cp ./README.md ./dist/ngx-drupal8-rest",
"copy-files": "npm run copy-license && npm run copy-readme",
"package": "npm run build_lib && npm run copy-files && npm run npm_pack",
"publish": "npm run build_lib && npm run copy-files && npm run npm_publish"
},
"dependencies": {
"@angular/animations": "~19.2.7",
"@angular/common": "~19.2.7",
"@angular/compiler": "~19.2.7",
"@angular/core": "~19.2.7",
"@angular/forms": "~19.2.7",
"@angular/platform-browser": "~19.2.7",
"@angular/platform-browser-dynamic": "~19.2.7",
"@angular/router": "~19.2.7",
"core-js": "^3.41.0",
"rxjs": "~7.8.2",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.8",
"@angular/cli": "~19.2.8",
"@angular/compiler-cli": "~19.2.7",
"@angular/language-service": "~19.2.7",
"@types/jasmine": "~5.1.7",
"@types/jasminewd2": "~2.0.13",
"@types/node": "~22.14.1",
"codelyzer": "~6.0.2",
"jasmine-core": "~5.6.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^19.2.2",
"protractor": "~7.0.0",
"ts-node": "~10.9.2",
"tslib": "^2.8.1",
"tslint": "~6.1.3",
"typescript": "~5.8.3"
},
"prettier": {
"singleQuote": true,
"overrides": [
{
"files": "*.scss",
"options": {
"singleQuote": false
}
}
]
}
}