forked from bcgov/BC-Wallet-Demo
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.47 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
{
"name": "showcase-for-vc",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "Verifiable Credential Demo",
"packageManager": "[email protected]",
"engines": {
"node": ">=v18.18.0 <20.0.0",
"yarn": "^3.6.4"
},
"repository": {
"url": "https://github.com/fullboar/showcase-for-vc",
"type": "git"
},
"workspaces": [
"web",
"verifier",
"api"
],
"scripts": {
"verifier": "cd verifier && yarn start",
"client": "cd web && yarn start",
"server": "cd api && yarn dev",
"dev": "concurrently \"npm run client\" \"npm run server\"",
"test": "yarn run cypress open",
"test:lint": "eslint --ignore-path .gitignore . --color",
"test:format": "prettier '**/*.+(js|json|ts|md|yml|yaml)'",
"build": "yarn workspace run build",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@typescript-eslint/visitor-keys": "^6.13.2",
"concurrently": "^8.2.2",
"cypress": "^13.6.0",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.1",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"prettier": "^3.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}