-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
96 lines (96 loc) · 3.04 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ngx-cookie",
"version": "6.0.1",
"description": "Implementation of Angular 1.x $cookies service to Angular",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-cookie --configuration production && ng build ngx-cookie-backend --configuration production",
"test": "ng test --watch=false",
"lint": "ng lint",
"e2e": "ng e2e",
"e2e:test-app": "ng run test-app:e2e",
"e2e:backend-test-app": "ng run backend-test-app:e2e",
"dev:ssr": "ng run backend-test-app:serve-ssr",
"serve:ssr": "node dist/backend-test-app/server/main.js",
"build:ssr": "ng build backend-test-app --configuration production && ng run backend-test-app:server:production",
"prerender": "ng run backend-test-app:prerender",
"cypress:open": "cypress open",
"cypress:run": "cypress run"
},
"repository": {
"type": "git",
"url": "https://github.com/salemdar/ngx-cookie.git"
},
"keywords": [
"angular2",
"angular",
"ng2",
"ng",
"cookie",
"cookies",
"angular2-cookie",
"angular2-cookies",
"ng2-cookies",
"ng2-cookie",
"ng-cookies",
"ng-cookie",
"ngx-cookie",
"ngx-cookies"
],
"author": "Samet Alemdar <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/salemdar/ngx-cookie#readme",
"bugs": {
"url": "https://github.com/salemdar/ngx-cookie/issues"
},
"dependencies": {
"@angular/animations": "^15.1.4",
"@angular/common": "^15.1.4",
"@angular/compiler": "^15.1.4",
"@angular/core": "^15.1.4",
"@angular/forms": "^15.1.4",
"@angular/platform-browser": "^15.1.4",
"@angular/platform-browser-dynamic": "^15.1.4",
"@angular/platform-server": "^15.1.4",
"@angular/router": "^15.1.4",
"@nguniversal/express-engine": "^15.1.0",
"express": "^4.15.2",
"rxjs": "~7.5.5",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.1.5",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "15.2.1",
"@angular/cli": "^15.1.5",
"@angular/compiler-cli": "^15.1.4",
"@angular/language-service": "^15.1.4",
"@cypress/schematic": "2.0.0",
"@nguniversal/builders": "^15.1.0",
"@types/express": "^4.17.8",
"@types/jasmine": "~4.0.3",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"cypress": "^10.3.0",
"eslint": "^8.28.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "39.3.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jasmine-core": "~4.2.0",
"karma": "~6.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^15.1.2",
"ts-node": "~10.8.1",
"typescript": "~4.9.5"
}
}