This repository has been archived by the owner on Oct 14, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.86 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
60
61
62
63
64
65
66
{
"name": "tokenization-service",
"private": true,
"version": "0.0.11",
"description": "Tokenization Service for Tezos",
"main": "dist/index.js",
"scripts": {
"prettier": "npx prettier --write .",
"lint": "eslint ./src/ --ext .ts",
"clean": "rm -rf ./dist/*",
"build": "npx tsc",
"test": "jest tests/ --runInBand",
"start": "node ./dist/index.js",
"dev": "concurrently \"npx tsc -w\" \"nodemon dist/index.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwa-lab/tokenization-service.git"
},
"keywords": [
"Tezos",
"Nats",
"Nats.io",
"Node",
"Node.js",
"Smart",
"Contracts",
"NFT",
"Token",
"Tokenization",
"Service",
"Taquito"
],
"author": "JWA Lab",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jwa-lab/tokenization-service/issues"
},
"homepage": "https://github.com/jwa-lab/tokenization-service#readme",
"devDependencies": {
"@jwalab/minilab": "^0.0.9",
"@tsconfig/node14": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"concurrently": "^5.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0",
"jest": "^26.6.3",
"jest-environment-node": "^26.6.2",
"nodemon": "^2.0.5",
"prettier": "^2.1.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@jwalab/tokenization-service-contracts": "^0.0.14",
"@taquito/signer": "^9.2.0",
"@taquito/taquito": "^9.2.0",
"@taquito/utils": "^9.2.0",
"@types/node": "^14.11.2",
"nats": "^2.0.0-216",
"yup": "^0.32.9"
},
"jest": {
"testEnvironment": "node"
}
}