-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathpackage.json
60 lines (60 loc) · 2.1 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
{
"name": "ngx-cookie-service-workspace",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build ngx-cookie-service",
"build:ngx-cookie-service-ssr": "ng build ngx-cookie-service-ssr",
"test": "ng test ngx-cookie-service",
"test:ngx-cookie-service-ssr": "ng test ngx-cookie-service-ssr",
"lint": "ng lint ngx-cookie-service",
"lint:ngx-cookie-service-ssr": "ng lint ngx-cookie-service-ssr",
"e2e": "ng e2e",
"format": "prettier ./projects/**/*.{ts,json}",
"format:write": "npm run format -- --write",
"format:check": "npm run format -- --check",
"package": "ng build ngx-cookie-service --prod && cp ./README.md ./dist/ngx-cookie-service && cd dist/ngx-cookie-service && npm pack"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"@angular/ssr": "^19.0.0",
"rxjs": "^7.8.1",
"tslib": "^2.8.0",
"zone.js": "^0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular-eslint/builder": "latest",
"@angular-eslint/eslint-plugin": "latest",
"@angular-eslint/eslint-plugin-template": "latest",
"@angular-eslint/schematics": "latest",
"@angular-eslint/template-parser": "latest",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@angular/language-service": "^19.0.0",
"@types/express": "^4.17.21",
"@types/jest": "latest",
"@types/node": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "latest",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"jest": "latest",
"jest-environment-jsdom": "latest",
"ng-packagr": "^19.0.0",
"prettier": "latest",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
}
}