-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.05 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.05 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
68
69
70
71
72
73
{
"name": "@deenruv/payments-plugin",
"version": "1.0.16",
"license": "MIT",
"main": "package/index.js",
"types": "package/index.d.ts",
"files": [
"package/**/*"
],
"private": false,
"scripts": {
"watch": "tsc -p ./tsconfig.build.json --watch",
"build": "rimraf package && tsc -p ./tsconfig.build.json",
"e2e": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.mts --run",
"e2e:watch": "cross-env PACKAGE=payments-plugin vitest --config ../../e2e-common/vitest.config.mts",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"ci": "npm run build",
"dev-server:mollie": "npm run build && DB=sqlite node -r ts-node/register e2e/mollie-dev-server.ts",
"dev-server:stripe": "npm run build && DB=sqlite node -r ts-node/register e2e/stripe-dev-server.ts"
},
"homepage": "https://deenruv.com/",
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"@mollie/api-client": "3.x",
"braintree": "3.x",
"graphql": "~16.9.0",
"graphql-tag": "^2.12.6",
"stripe": "13.x"
},
"dependencies": {
"@deenruv/common": "workspace:^",
"@deenruv/testing": "workspace:^",
"@nestjs/common": "^10.3.10",
"@nestjs/core": "^10.3.10",
"@nestjs/graphql": "^12.2.0",
"axios": "^1.7.7",
"body-parser": "^1.20.2",
"currency.js": "2.0.4",
"express": "^4.21.0"
},
"peerDependenciesMeta": {
"@deenruv/core": "^1.0.0",
"@mollie/api-client": {
"optional": true
},
"braintree": {
"optional": true
},
"stripe": {
"optional": true
}
},
"devDependencies": {
"@deenruv/core": "workspace:^",
"@mollie/api-client": "^3.7.0",
"@types/body-parser": "^1.19.5",
"@types/braintree": "^3.3.11",
"@types/connect": "^3.4.38",
"@types/express": "^4.17.21",
"@types/localtunnel": "2.0.4",
"braintree": "^3.22.0",
"graphql": "~16.9.0",
"graphql-tag": "^2.12.6",
"localtunnel": "2.0.2",
"nock": "^13.1.4",
"rimraf": "^5.0.5",
"stripe": "^13.3.0",
"typescript": "5.1.6"
}
}