-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
83 lines (83 loc) · 2.6 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
{
"name": "web_auth_server",
"version": "1.0.0",
"description": "An open source authentication server works with kinds of sns platforms.",
"author": "Link <xie.al@qq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/BlockABC/web_auth_server.git"
},
"bugs": {
"url": "https://github.com/BlockABC/web_auth_server/issues"
},
"homepage": "https://github.com/BlockABC/web_auth_server",
"main": "index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"prebuild": "shx rm -rf ./dist",
"build": "cross-env NODE_ENV=production nest build",
"start": "cross-env NODE_ENV=production nest start",
"start:dev": "cross-env NODE_ENV=development nest start --watch",
"test": "cross-env NODE_ENV=testing jest",
"test:watch": "cross-env NODE_ENV=testing jest --watch",
"test:cov": "cross-env NODE_ENV=testing jest --coverage",
"test:e2e": "cross-env NODE_ENV=testing jest --config ./test/jest-e2e.json",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix"
},
"dependencies": {
"@nestjs/cli": "^7.1.2",
"@nestjs/common": "^7.0.7",
"@nestjs/config": "^0.4.0",
"@nestjs/core": "^7.0.7",
"@nestjs/microservices": "^7.0.7",
"@nestjs/passport": "^7.0.0",
"@nestjs/platform-express": "^7.0.7",
"@nestjs/schedule": "^0.3.0",
"@nestjs/swagger": "^4.5.1",
"@nestjs/testing": "^7.3.1",
"@nestjs/typeorm": "^7.0.0",
"@nestjs/websockets": "^7.0.7",
"@types/ip": "^1.1.0",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.8",
"@types/passport": "^1.0.3",
"@types/passport-twitter": "^1.0.34",
"class-transformer": "^0.3.0",
"class-validator": "^0.12.2",
"connect-redis": "^4.0.4",
"cross-env": "^7.0.2",
"crypto-random-string": "^3.2.0",
"express-session": "^1.17.0",
"lodash": "^4.17.15",
"mysql": "^2.18.1",
"nest-winston": "^1.3.3",
"nestjs-redis": "^1.2.7",
"nestjs-session": "^1.0.1",
"passport": "^0.4.1",
"passport-line-auth": "^0.2.8",
"passport-twitter": "^1.0.4",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"shx": "^0.3.2",
"slug": "^2.1.1",
"swagger-ui-express": "^4.1.4",
"typeorm": "^0.2.24",
"typescript": "3.9.6",
"winston": "^3.2.1"
},
"devDependencies": {
"eslint": "^7.0.0",
"eslint-config-blockabc": "^0.11.0",
"ioredis-mock": "^4.21.1",
"jest": "^25.2.4",
"semantic-release": "^17.2.4",
"supertest": "^4.0.2",
"ts-jest": "^25.3.0",
"ts-node": "^8.8.1"
}
}