generated from Borodutch/backend-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.4 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": "obss-ipfs-uploader",
"version": "0.0.1",
"description": "OBSS IPFS Uploader",
"main": "dist/server.js",
"repository": "https://github.com/backmeupplz/obss-ipfs-uploader",
"author": "backmeupplz <backmeupplz@gmail.com>",
"license": "MIT",
"type": "module",
"prettier": "@big-whale-labs/prettier-config",
"scripts": {
"distribute": "yarn build && node --experimental-modules --es-module-specifier-resolution=node dist/server.js",
"start": "tsc-watch --skipLibCheck --onSuccess 'node --experimental-modules --es-module-specifier-resolution=node dist/server.js'",
"build": "tsc --skipLibCheck",
"test": "yarn jest --forceExit --runInBand",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 ./src/",
"docker-start-development": "docker-compose --profile=development up",
"docker-start-production": "docker-compose --profile=production up",
"docker-start-production-no-dns": "docker-compose --profile=production-no-dns up",
"transfer-cid": "yarn build && node --experimental-modules --es-module-specifier-resolution=node dist/scripts/transfer-cid.js",
"backup-cid": "yarn build && node --experimental-modules --es-module-specifier-resolution=node dist/scripts/backup-cid.js"
},
"dependencies": {
"@hapi/boom": "^10.0.0",
"@koa/cors": "^4.0.0",
"amala": "^8.0.2",
"axios": "1.6.2",
"dotenv": "^16.0.3",
"envalid": "^7.3.1",
"file-type": "^18.5.0",
"ipfs-http-client": "^60.0.0",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^12.0.0",
"mongoose": "^7.0.3",
"sharp": "0.32.5"
},
"devDependencies": {
"@big-whale-labs/bwl-eslint-backend": "^1.0.4",
"@big-whale-labs/prettier-config": "^1.1.3",
"@rushstack/eslint-patch": "^1.2.0",
"@typegoose/typegoose": "^11.0.0",
"@types/jest": "^29.2.3",
"@types/koa": "^2.13.5",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/koa__cors": "^3.3.0",
"@types/node": "^18.11.9",
"@types/supertest": "^2.0.12",
"eslint": "^8.28.0",
"http-graceful-shutdown": "^3.1.11",
"jest": "^29.3.1",
"module-alias": "^2.2.2",
"prettier": "^2.8.0",
"source-map-support": "^0.5.21",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"tsc-watch": "^5.0.3",
"typescript": "^4.9.3"
},
"_moduleAliases": {
"@": "dist"
},
"packageManager": "yarn@3.3.0"
}