-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.11 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
{
"name": "api",
"version": "0.0.1",
"description": "",
"author": "",
"license": "MIT",
"repository": "https://github.com/yuforium/api.git",
"scripts": {
"prebuild": "rimraf dist",
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"start:dev": "nest start --watch",
"start:debug": "nest start --debug --watch",
"start:prod": "node dist/main",
"start:repl": "nest start --entryFile repl",
"start:mirrord": "source .env.mirrord && mirrord exec --steal --target $MIRRORD_TARGET --target-namespace $MIRRORD_TARGET_NAMESPACE npm run start:dev",
"lint": "tslint -p tsconfig.json -c tslint.json",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"doc": "compodoc -p tsconfig.json -s -w"
},
"engine": {
"node": ">=18.0.0"
},
"dependencies": {
"@nestjs/axios": "^3.0.0",
"@nestjs/common": "^10.0.5",
"@nestjs/config": "^3.0.0",
"@nestjs/core": "^10.0.5",
"@nestjs/jwt": "^10.1.0",
"@nestjs/mongoose": "^10.0.0",
"@nestjs/passport": "^10.0.0",
"@nestjs/platform-express": "^10.0.5",
"@nestjs/swagger": "^7.1.1",
"@yuforium/activity-streams": "^0.2.0-alpha",
"@yuforium/http-signature": "^0.0.1",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"mongoose": "^6.0.12",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.0",
"rxjs": "^7.4.0",
"sanitize-html": "^2.13.0",
"swagger-ui-express": "^4.1.2",
"tldts": "^6.0.22"
},
"devDependencies": {
"@compodoc/compodoc": "^1.1.24",
"@eslint/create-config": "^0.4.6",
"@nestjs/cli": "^10.1.8",
"@nestjs/schematics": "^10.0.1",
"@nestjs/testing": "^10.0.5",
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.67",
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.6",
"@types/express": "^4.17.1",
"@types/jest": "^29.5.2",
"@types/node": "^16.11.27",
"@types/passport-jwt": "^3.0.3",
"@types/passport-local": "^1.0.33",
"@types/psl": "^1.1.0",
"@types/sanitize-html": "^2.11.0",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^6.16.0",
"@typescript-eslint/parser": "^6.16.0",
"eslint": "^8.56.0",
"jest": "^29.6.1",
"multicast-service-discovery": "^4.0.3",
"prettier": "1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"typedoc": "^0.24.8",
"typescript": "^4.4.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}