forked from bcgov/PaymentCommonComponent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1006 Bytes
/
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
{
"name": "payment",
"packageManager": "[email protected]",
"private": true,
"workspaces": [
"apps/*"
],
"engines": {
"node": "^18.14.0"
},
"scripts": {
"start:backend:local": "yarn workspace @payment/backend start:dev",
"start:backend:test": "yarn workspace @payment/backend start:test",
"test:pipeline": "yarn workspace @payment/backend test:pipeline",
"test:cov": "yarn workspace @payment/backend test:cov",
"build:backend": "yarn workspace @payment/backend build",
"compodoc": "yarn workspace @payment/backend docs",
"test": "echo 'Running tests' && wsrun --parallel --exclude-missing test",
"eslint-nibble": "echo 'Checking code style' && yarn workspace @payment/backend nibble",
"postinstall": "husky install"
},
"devDependencies": {
"eslint": "8.32.0",
"eslint-config-prettier": "8.6.0",
"eslint-nibble": "8.1.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "8.0.0",
"npm-run-all": "4.1.5",
"wsrun": "5.2.4"
}
}