This repository has been archived by the owner on Aug 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (55 loc) · 2.04 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
53
54
55
56
57
58
59
{
"name": "certification-and-verification",
"version": "1.0.0",
"description": "This is a ready-to-use reference app that showcases usage of Affinidi API for issuing, sharing, verifying and storing verifiable credentials in the wallet.",
"main": "index.js",
"scripts": {
"dev": "node generator/confirm.mjs && nodemon --exec 'node generator/generate.mjs && npm run start'",
"generate": "node generator/confirm.mjs && node generator/generate.mjs",
"install-all": "concurrently -n w: npm:install:*",
"install:template": "npm i --prefix generator/template",
"install:career": "npm i --prefix use-cases/career",
"install:gaming": "npm i --prefix use-cases/gaming",
"start": "concurrently -n w: \"npm:start:*(!template)\"",
"start:template": "npm run --prefix generator/template dev -- -p 3000",
"start:career": "npm run --prefix use-cases/career dev -- -p 3001",
"start:gaming": "npm run --prefix use-cases/gaming dev -- -p 3002",
"build": "concurrently -n w: \"npm:build:*(!template)\"",
"build:template": "npm run --prefix generator/template build",
"build:career": "npm run --prefix use-cases/career build",
"build:gaming": "npm run --prefix use-cases/gaming build",
"postinstall": "npm run install-all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/affinidi/reference-app-certification-and-verification.git"
},
"author": "Affinidi",
"license": "MIT",
"bugs": {
"url": "https://github.com/affinidi/reference-app-certification-and-verification/issues"
},
"homepage": "https://github.com/affinidi/reference-app-certification-and-verification#readme",
"devDependencies": {
"@types/node": "^18.13.0",
"concurrently": "^7.6.0",
"inquirer": "^9.1.4",
"mkdirp": "^2.1.3",
"nodemon": "^2.0.20",
"rimraf": "^4.1.2"
},
"nodemonConfig": {
"watch": [
"generator",
"README.md"
],
"ignore": [
".git",
"node_modules",
"package.json",
".next"
],
"delay": 500,
"ext": "js,mjs,ts,tsx,json,md"
}
}