forked from 4sure-tech/BC-Wallet-Demo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.33 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
{
"name": "bc-wallet-demo",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "BC Wallet - Verifiable Credential Demo",
"repository": {
"url": "https://github.com/bcgov/bc-wallet-demo",
"type": "git"
},
"workspaces": [
"client",
"server"
],
"scripts": {
"check-types": "tsc --noEmit",
"prettier": "prettier '**/*.+(js|json|ts|md|yml|yaml)'",
"lint": "eslint --ignore-path .gitignore .",
"format": "yarn prettier --write",
"prepare": "husky install",
"client:start": "yarn workspace client start",
"client:build": "yarn workspace client build",
"server:dev": "yarn workspace server dev",
"server:build": "yarn workspace server build",
"dev": "concurrently -n 'client,server ' -c 'green.bold,red.bold' 'yarn client:start' 'yarn server:dev'",
"test": "yarn run cypress open",
"build": "yarn workspace client build && yarn workspace server build",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"devDependencies": {
"concurrently": "^7.0.0",
"cypress": "^9.5.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.1",
"prettier": "^2.6.1",
"eslint-config-prettier": "^8.3.0"
}
}