This repository has been archived by the owner on May 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "@egodigital/blockchain",
"version": "0.6.0",
"description": "A RESTful API for using a simple blockchain.",
"main": "dist/index.js",
"scripts": {
"build": "(rm -r ./dist || true) && (\"./node_modules/.bin/tsc\" && \"./node_modules/.bin/tsc\" -d)",
"dev": "nodemon --watch 'src/**/*.ts' --ignore 'src/**/*.spec.ts' --exec ts-node src/index.ts --legacy-watch --polling-interval 2500",
"doc": "(rm -r ./doc || true) && (\"./node_modules/.bin/typedoc\" --out ./doc ./src)",
"local": "npm run build && bash ./run_local.sh",
"start": "npm run build && node .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/egodigital/blockchain-api.git"
},
"keywords": [
"blockchain",
"http",
"rest",
"api"
],
"author": "e.GO Digital GmbH, Aachen, Germany",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/egodigital/blockchain-api/issues"
},
"homepage": "https://github.com/egodigital/blockchain-api#readme",
"devDependencies": {
"@types/express": "4.17.1",
"@types/fs-extra": "^8.1.1",
"@types/joi": "^14.3.4",
"@types/lodash": "^4.14.157",
"@types/moment-timezone": "^0.5.13",
"@types/mongoose": "^5.7.32",
"@types/node": "^13.13.14",
"@types/p-queue": "^3.2.1",
"@types/sanitize-filename": "^1.6.3",
"@types/uuid": "^3.4.9",
"assert": "^2.0.0",
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"superagent": "^5.3.1",
"supertest": "^4.0.2",
"ts-node": "^8.10.2",
"tslint": "^5.20.1",
"typedoc": "^0.15.8",
"typescript": "^3.9.7"
},
"dependencies": {
"@egodigital/egoose": "^7.0.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"joi": "^14.3.1",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"node-enumerable": "^5.0.1",
"p-queue": "^6.6.0",
"sanitize-filename": "^1.6.3",
"uuid": "^3.4.0"
}
}