-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.34 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
67
68
69
70
71
{
"name": "@windingtree/org.id-migration-backend",
"version": "1.0.0",
"description": "The ORGiD migration backend server",
"main": "dist/src/index.js",
"types": "dist/src/index.t.ts",
"repository": "git@github.com:windingtree/org.id-migration-backend.git",
"author": "Winding Tree Developers <dev@windingtree.com>",
"contributors": [
"Kostiantyn Smyrnov <kostysh@gmail.com>"
],
"license": "GPL-3.0-only",
"private": false,
"type": "module",
"scripts": {
"clean": "rm -rf dist",
"build": "yarn clean && tsc -p tsconfig.build.json",
"start": "node --experimental-specifier-resolution=node dist/src/index.js",
"start:dev": "node --trace-warnings --experimental-specifier-resolution=node --loader ts-node/esm src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npx eslint . --ext .ts",
"lint:fix": "npx eslint . --ext .ts --fix && npx prettier --write .",
"prepare": "husky install",
"commit": "git-cz -S",
"redis": "scripts/redis.sh",
"types": "npx sta --no-client -p src/swagger.yaml -o src -n types.ts"
},
"dependencies": {
"express": "^4.18.2",
"dotenv": "^16.0.3",
"typedi": "^0.10.0",
"reflect-metadata": "^0.1.13",
"ethers": "^5.7.2",
"helmet": "^6.0.0",
"cors": "^2.8.5",
"ioredis": "^5.2.4",
"bullmq": "^3.1.3",
"level": "^8.0.0",
"swagger-ui-express": "^4.6.0",
"express-openapi-validator": "^4.13.8",
"yamljs": "^0.3.0",
"luxon": "^3.1.0",
"kleur": "^4.1.5",
"web3.storage": "^4.4.0",
"@windingtree/org.json-schema": "^1.0.2",
"@windingtree/org.id-utils": "^1.2.4",
"@windingtree/org.id-auth": "^1.2.4"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@types/express": "^4.17.14",
"@types/cors": "^2.8.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"@types/luxon": "^3.1.0",
"@types/morgan": "^1.9.3",
"@tsconfig/node16": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@commitlint/config-conventional": "^17.2.0",
"@commitlint/cli": "^17.2.0",
"eslint": "^8.27.0",
"ts-node": "^10.9.1",
"git-cz": "^4.9.0",
"husky": "^8.0.2",
"prettier": "^2.7.1",
"lint-staged": "^13.0.3",
"swagger-typescript-api": "^12.0.2",
"typescript": "^4.8.4"
}
}