-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
50 lines (50 loc) · 1.74 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
{
"name": "animo-demo",
"version": "0.1.0",
"private": true,
"license": "Apache-2.0",
"description": "Animo Solutions - Verifiable Credential Demo",
"repository": {
"url": "https://github.com/animo/animo-demo",
"type": "git"
},
"workspaces": [
"client",
"server"
],
"scripts": {
"check-types": "yarn workspaces run tsc --noEmit -p tsconfig.json",
"prettier": "prettier '**/*.+(js|json|ts|md|yml|yaml)'",
"lint": "eslint --ignore-path .gitignore .",
"format": "yarn prettier --write",
"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,testAgent' -c 'green.bold,red.bold,blue.bold' 'yarn client:start' 'yarn server:dev' 'yarn workspace server dev:agent' ",
"test": "yarn run cypress open",
"build": "yarn workspace client build && yarn workspace server build",
"cy:open": "cypress open",
"cy:run": "cypress run"
},
"devDependencies": {
"@aries-framework/core": "^0.2.3",
"@lensesio/cypress-websocket-testing": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.38.1",
"@typescript-eslint/visitor-keys": "^5.10.2",
"concurrently": "^7.0.0",
"cypress": "10.7.0",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-react-app": "^7.0.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.6.1",
"rxjs": "^7.5.7",
"typescript": "~4.8.4"
}
}