-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
49 lines (49 loc) · 1.38 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
{
"name": "capy-cloud-backend",
"version": "1.0.0",
"description": "Backend for Capy Cloud",
"main": "src/main.ts",
"scripts": {
"start": "yarn ts-node src/main.ts",
"lint": "yarn run eslint src/"
},
"repository": "git+https://github.com/Capyton/capy-cloud-backend.git",
"author": "Capyton",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Capyton/backend/issues"
},
"homepage": "https://github.com/Capyton/capy-cloud-backend#readme",
"dependencies": {
"@kripod/uuidv7": "^0.3.4",
"@nestjs/common": "^9.3.9",
"@nestjs/core": "^9.3.9",
"@nestjs/platform-express": "^9.3.9",
"@nestjs/swagger": "^6.2.1",
"@types/multer": "^1.4.7",
"axios": "^1.3.4",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.0",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.0",
"pg": "^8.9.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"ton-core": "^0.49.0",
"ton-crypto": "^3.2.0",
"tonstorage-cli": "^1.0.3",
"tweetnacl": "^1.0.3",
"typeorm": "^0.3.12"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jsonwebtoken": "^9.0.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.2",
"typescript": "^4.9.5"
}
}