-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.61 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.61 KB
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
{
"name": "kyoongdev-nestjs",
"version": "1.5.2",
"main": "build/index.js",
"bin": "build/express/util/index.js",
"license": "MIT",
"repository": "https://github.com/kyoongdev/kyoongdev-nestjs",
"scripts": {
"clear": "node scripts/clear-build.js",
"build": "yarn clear && tsc -b && node scripts/copy-build.js",
"start": "nodemon --config nodemon.json",
"prepublishOnly": "yarn build",
"prepare": "husky install",
"lint:staged": "lint-staged && yarn lint:fix",
"test-sdk": "node --trace-warnings --unhandled-rejections=strict build/express/sdk/index.js ./src/example/controllers ./test-sdk",
"prettier:fix": "prettier **/*.ts --write",
"lint:fix": "eslint --fix --ext .js,.ts ./src ",
"pre-commit": "yarn lint-staged"
},
"dependencies": {
"@nestjs/common": "^9.0.0",
"@nestjs/config": "^2.2.0",
"@nestjs/core": "^9.0.0",
"@nestjs/cqrs": "^9.0.1",
"@nestjs/passport": "^9.0.0",
"@nestjs/platform-express": "^9.0.0",
"@nestjs/swagger": "^6.0.5",
"@prisma/client": "^4.2.1",
"apple-auth": "^1.0.7",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.1",
"exceljs": "^4.3.0",
"firebase-admin": "^11.0.1",
"form-data": "^4.0.0",
"hangul-js": "^0.2.6",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.21",
"passport": "^0.6.0",
"prisma": "^4.2.1",
"qrcode": "^1.5.3",
"query-string": "^7.1.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"rxjs": "^7.2.0",
"nanoid": "3.3.4",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@nestjs/cli": "^9.0.0",
"@nestjs/schematics": "^9.0.0",
"@nestjs/testing": "^9.0.0",
"@types/crypto-js": "^4.1.1",
"@types/express": "^4.17.13",
"@types/jest": "28.1.4",
"@types/jsonwebtoken": "^8.5.9",
"@types/lodash": "^4.14.184",
"@types/node": "^16.0.0",
"@types/qrcode": "^1.5.0",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"jest": "28.1.2",
"lint-staged": "^13.2.2",
"prettier": "^2.3.2",
"prettier-plugin-organize-imports": "^3.1.1",
"source-map-support": "^0.5.20",
"supertest": "^6.1.3",
"ts-jest": "28.0.5",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"tsconfig-paths": "4.0.0",
"typescript": "^4.3.5"
},
"lint-staged": {
"src/**/*.{js,ts}": [
"yarn prettier:fix",
"yarn lint:fix"
]
}
}