This repository was archived by the owner on Jun 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 2.44 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 2.44 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
43
44
45
46
47
48
49
50
51
52
{
"name": "integration",
"version": "0.0.0",
"stableVersion": "0.0.0",
"author": "Prosopo",
"repository": {
"type": "git",
"url": "git+https://github.com/prosopo-io/integration.git"
},
"scripts": {
"clean": "find . -name \"node_modules\" -type d -prune -exec rm -rf '{}' + && find . -name \"dist\" -type d -prune -exec rm -rf '{}' + && find . -name \"package-lock.json\" -type f -delete",
"build": "npm run build:contract && npm run build:provider && npm run build:procaptcha && npm run build:procaptcha-react",
"build:contract": "npm -w @prosopo/contract run clean && npm -w @prosopo/contract run build",
"build:provider": "npm -w @prosopo/provider run clean && npm -w @prosopo/provider run build",
"build:procaptcha": "npm -w @prosopo/procaptcha run clean && npm -w @prosopo/procaptcha run build",
"build:procaptcha-react": "npm -w @prosopo/procaptcha-react run clean && npm -w @prosopo/procaptcha-react run build",
"build:client-example": "npm -w client-example run build",
"setup": "npm -w @prosopo/provider run setup",
"start": "npm -w @prosopo/provider run start",
"provider": "npm -w @prosopo/provider run cli",
"fix-typescript-references": "utils-typescript-references",
"test": "npm run remove-test-container && docker compose --file docker-compose.test.yml up -d substrate-test-node && npm -w @prosopo/provider run test",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"populate-data": "npm -w @prosopo/provider run populate-data",
"git-sync": "git submodule foreach -q --recursive 'echo $sm_path && git switch $(git config -f $toplevel/.gitmodules submodule.$name.branch || echo main)'",
"git-dev": "git submodule foreach -q --recursive 'echo $sm_path && git switch $(echo 'develop')'",
"git-branch": "git submodule foreach -q --recursive 'echo $sm_path && git switch $(echo '$BRANCH')"
},
"private": true,
"engines": {
"node": ">=14.0.0"
},
"workspaces": [
"client-example",
"packages/*",
"demos/*"
],
"devDependencies": {
"depcheck": "^1.4.3",
"npm-check-updates": "^15.3.4",
"tslib": "^2.4.0",
"typescript": "^4.7.4"
},
"description": "Integrates protocol and provider for development purposes",
"bugs": {
"url": "https://github.com/prosopo-io/integration/issues"
},
"homepage": "https://github.com/prosopo-io/integration#readme",
"keywords": [],
"license": "ISC"
}