This repository has been archived by the owner on Jan 2, 2024. It is now read-only.
forked from animo/animo-demo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.97 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
{
"name": "agency-demo",
"version": "0.1.37",
"private": true,
"license": "Apache-2.0",
"description": "Findy Agency - Verifiable Credential Demo",
"repository": {
"url": "https://github.com/findy-network/agency-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": "echo \"$(cat .gitignore)\" > .eslintignore && echo tools >> .eslintignore && echo infra >> .eslintignore && eslint .",
"format": "yarn prettier --write",
"client:start": "yarn workspace client start",
"client:build": "yarn workspace client build && yarn licenses:report && yarn client:version",
"client:version": "echo v$(./tools/version.sh ./client) > client/build/version.txt",
"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",
"licenses:report": "node ./tools/check-licenses.js report",
"licenses:check": "node ./tools/check-licenses.js "
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^6.13.1",
"@typescript-eslint/visitor-keys": "^6.7.4",
"concurrently": "^8.2.2",
"cypress": "^13.6.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-react-app": "^7.0.0",
"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",
"js-green-licenses": "^4.0.0",
"prettier": "^3.1.0",
"typescript": "~4.8.4"
},
"dependencies": {}
}