-
Notifications
You must be signed in to change notification settings - Fork 127
/
package.json
86 lines (86 loc) · 3.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "ng-recaptcha-base",
"private": true,
"version": "13.2.1",
"scripts": {
"demo:file-gen": "ts-node --project ./tsconfig.node.json ./projects/demo/bin/file-gen.ts",
"demo:serve": "yarn demo:file-gen && ng serve demo",
"demo:build": "yarn demo:file-gen && ng build demo --configuration production && yarn demo:copy-entrypoints",
"demo:copy-entrypoints": "ts-node --project ./tsconfig.node.json ./projects/demo/bin/copy-entrypoints.ts",
"demo:serve-http": "http-server ./dist/demo -a localhost -p 9000 -c-1",
"demo:publish-gh-pages": "gh-pages --dist dist/demo/ng-recaptcha --repo https://github.com/DethAriel/ng-recaptcha --no-history",
"clean": "rimraf dist",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file",
"github-release": "conventional-github-releaser --preset angular",
"lib:build": "ng build ng-recaptcha --configuration production",
"version:lib": "cd projects/ng-recaptcha && npm version $NGR_VERSION --no-git-tag-version && git add package.json",
"preversion": "yarn version:lib && yarn lib:build",
"version": "yarn changelog && git add CHANGELOG.md && cp CHANGELOG.md dist/ng-recaptcha/CHANGELOG.md",
"lint": "eslint projects --ext .js,.ts,.html",
"prepare": "husky install",
"e2e": "ng e2e"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@types/grecaptcha": "^3.0.3",
"tslib": "^2.2.0"
},
"peerDependencies": {},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular-eslint/builder": "17.0.1",
"@angular-eslint/eslint-plugin": "17.0.1",
"@angular-eslint/eslint-plugin-template": "17.0.1",
"@angular-eslint/schematics": "17.0.1",
"@angular-eslint/template-parser": "17.0.1",
"@angular/animations": "^17.0.1",
"@angular/cdk": "^17.0.0",
"@angular/cli": "^17.0.0",
"@angular/common": "^17.0.1",
"@angular/compiler": "^17.0.1",
"@angular/compiler-cli": "^17.0.1",
"@angular/core": "^17.0.1",
"@angular/forms": "^17.0.1",
"@angular/material": "^17.0.0",
"@angular/platform-browser": "^17.0.1",
"@angular/platform-browser-dynamic": "^17.0.1",
"@angular/router": "^17.0.1",
"@cypress/schematic": "2.4.0",
"@types/core-js": "^2.5.4",
"@types/jasmine": "^3.8.1",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"conventional-changelog-cli": "^2.1.1",
"conventional-github-releaser": "^3.1.5",
"coveralls": "^3.1.1",
"cypress": "^11.2.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-utils": "^3.0.0",
"gh-pages": "^6.1.0",
"highlight.js": "^11.1.0",
"http-server": "^0.12.3",
"husky": "^7.0.0",
"jasmine-core": "^3.8.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "^4.0.1",
"karma-jasmine-html-reporter": "^1.7.0",
"lint-staged": "^11.0.1",
"ng-packagr": "^17.0.0",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"rxjs": "^6.5.3",
"ts-node": "^10.8.1",
"typescript": "^5.2.2",
"typescript-eslint": "^0.0.1-alpha.0",
"zone.js": "~0.14.2"
}
}