-
-
Notifications
You must be signed in to change notification settings - Fork 76
/
Copy pathpackage.json
74 lines (74 loc) · 2.3 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
{
"name": "ngx-stripe",
"version": "0.0.0",
"repository": {
"type": "git",
"url": "https://github.com/richnologies/ngx-stripe.git"
},
"homepage": "https://ngx-stripe.dev",
"keywords": [
"angular",
"stripe",
"payments"
],
"license": "MIT",
"scripts": {
"ng": "ng",
"build:lib": "ng-packagr -p projects/ngx-stripe/ng-package.json",
"copy:docs": "copyfiles docs/**/*.png dist/ngx-stripe",
"build:app": "ng build ngx-stripe-docs --configuration production",
"pack:lib": "cd dist/ngx-stripe && npm pack",
"package": "npm run build:lib && npm run copy:docs && npm run pack:lib",
"publish": "npm publish dist/ngx-stripe/ngx-stripe-X.X.X.tgz",
"start": "ng serve ngx-stripe-docs",
"test": "ng test ngx-stripe",
"lint": "ng lint",
"format": "prettier --config ./.prettierrc --list-different --write \"projects/**/src/**/*{.ts,.html,.css,.scss}\"",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^19.0.1",
"@angular/cdk": "^19.0.1",
"@angular/common": "^19.0.1",
"@angular/compiler": "^19.0.1",
"@angular/core": "^19.0.1",
"@angular/forms": "^19.0.1",
"@angular/material": "^19.0.1",
"@angular/platform-browser": "^19.0.1",
"@angular/platform-browser-dynamic": "^19.0.1",
"@angular/platform-server": "^19.0.1",
"@angular/router": "^19.0.1",
"@stripe/stripe-js": "^5.2.0",
"highlight.js": "^11.9.0",
"ngx-highlightjs": "^10.0.0",
"ngx-toastr": "^18.0.0",
"rxjs": "~7.5.7",
"stripe": "^8.222.0",
"tslib": "^2.4.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.2",
"@angular/cli": "^19.0.2",
"@angular/compiler-cli": "^19.0.1",
"@tailwindcss/typography": "^0.5.7",
"@types/express": "^4.17.0",
"@types/jasmine": "~3.10.0",
"@types/node": "^12.11.1",
"autoprefixer": "^10.4.5",
"copyfiles": "^2.4.1",
"jasmine-core": "~3.10.0",
"karma": "~6.3.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "~2.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "~1.7.0",
"ng-packagr": "19.0.1",
"postcss": "^8.4.12",
"prettier": "2.6.2",
"tailwindcss": "^3.1.8",
"typescript": "^5.6.3"
}
}