forked from torusresearch/torus-metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
109 lines (109 loc) · 3.41 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "torus-metadata",
"version": "1.0.0",
"description": "Torus metadata server",
"main": "index.js",
"scripts": {
"dev": "docker-compose -f docker-compose.dev.yml up --build",
"down": "docker-compose -f docker-compose.dev.yml down",
"serve": "nodemon --config nodemon.json src/index.ts",
"build": "rimraf ./dist && tsc",
"start": "ts-node src/index.ts",
"prod": "node dist/index.js",
"migrate": "npx knex migrate:unlock --knexfile ./src/database/knexfile.ts && npx knex migrate:latest --knexfile ./src/database/knexfile.ts",
"migrate:down": "npx knex migrate:down --knexfile ./src/database/knexfile.ts",
"lint:ts": "eslint --fix 'src/**/*.ts'",
"prepare": "husky install",
"test": "cross-env NODE_ENV=development LOG_DEBUG=yes mocha",
"test:ci": "docker-compose -f docker-compose-ci.yml up --build --abort-on-container-exit --exit-code-from torus-metadata",
"down:ci": "docker-compose -f docker-compose-ci.yml down"
},
"keywords": [],
"author": "Chaitanya Potti",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.18.3",
"@sentry/node": "^7.0.0",
"@sentry/tracing": "^7.0.0",
"@socket.io/redis-adapter": "^7.2.0",
"@toruslabs/eccrypto": "^1.1.8",
"@toruslabs/loglevel-sentry": "^4.0.0",
"celebrate": "^15.0.1",
"cids": "^1.1.9",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"elliptic": "^6.5.4",
"express": "^4.18.1",
"helmet": "^5.1.0",
"js-sha3": "^0.8.0",
"json-stable-stringify": "^1.0.1",
"knex": "^2.1.0",
"knex-on-duplicate-update": "^2.3.0",
"loglevel": "^1.8.0",
"morgan": "^1.10.0",
"multer": "^1.4.4",
"multihashing-async": "^2.1.4",
"mysql": "^2.18.1",
"redis": "^4.1.0",
"socket.io": "^4.5.1"
},
"devDependencies": {
"@tkey/storage-layer-torus": "^6.0.0",
"@toruslabs/eslint-config-node": "^1.0.4",
"@types/compression": "^1.7.2",
"@types/elliptic": "^6.4.14",
"@types/express": "^4.17.13",
"@types/json-stable-stringify": "^1.0.34",
"@types/mocha": "^9.1.1",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"atob": "^2.1.2",
"btoa": "^1.2.1",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.17.0",
"eslint-plugin-chai-expect": "^3.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^10.0.5",
"eslint-plugin-n": "^15.2.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.5.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-tsdoc": "^0.2.16",
"form-data": "^4.0.0",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"node-fetch": "^2.6.7",
"nodemon": "^2.0.16",
"prettier": "^2.6.2",
"ts-node": "^10.8.1",
"typescript": "^4.7.3",
"wait-port": "^0.2.9"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --cache --fix",
"prettier --write"
],
"*.{json,yaml,yml}": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/torusresearch/torus-metadata.git"
},
"bugs": {
"url": "https://github.com/torusresearch/torus-metadata/issues"
},
"homepage": "https://github.com/torusresearch/torus-metadata#readme",
"engines": {
"node": ">=14.17.0",
"npm": ">=6.x"
}
}