-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.02 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
{
"name": "stripe-payment-connector-sample",
"version": "0.0.1",
"private": true,
"author": "Axinom",
"homepage": "https://portal.axinom.com/mosaic",
"license": "MIT",
"keywords": [
"axinom",
"mosaic",
"axinom mosaic",
"stripe",
"payment connector",
"payment",
"SVOD",
"subscription"
],
"workspaces": [
"services/*/*",
"libs/*"
],
"scripts": {
"clean": "wsrun -tm clean",
"build": "wsrun -tm build",
"lint": "eslint \"{services,libs}/**/src/**/*.{ts,tsx,js}\" --fix",
"dev": "wsrun -c dev",
"test": "wsrun -m test",
"test:ci": "jest --silent --reporters=default --reporters=jest-junit --coverage --coverageReporters=cobertura",
"apply-templates": "mosaic apply-templates",
"apply-all-templates": "mosaic apply-templates --replace",
"util:load-vars": "env-cmd -f .env",
"util:update-mosaic-packages": "ts-node ./scripts/update-mosaic-packages.ts",
"build:payment-connector:prod": "yarn && wsrun -trm -p stripe-payment-connector -c build && yarn install --prod",
"build:payment-frontend:prod": "yarn && wsrun -trm -p frontend-service -c build && yarn install --prod"
},
"devDependencies": {
"@axinom/mosaic-cli": "0.18.4",
"@types/jest": "^29.5.1",
"@types/node": "^18.14.1",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"ajv": "^8.12.0",
"dotenv": "^16.0.3",
"env-cmd": "^10.1.0",
"env-var": "^7.3.0",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^4.2.1",
"graphile-build": "^4.5.0",
"graphile-build-pg": "^4.5.0",
"graphql": "^15.8.0",
"jest": "^29.5.0",
"jest-expect-message": "^1.1.3",
"jest-junit": "^15.0.0",
"pg": "8.9.0",
"prettier": "^2.8.4",
"prettier-plugin-organize-imports": "^3.2.2",
"sinon": "^10.0.0",
"ts-node": "^10.9.1",
"tslib": "2.5.0",
"typescript": "^4.9.5",
"wsrun": "^5.2.4",
"yargs": "^17.7.1"
}
}