-
Notifications
You must be signed in to change notification settings - Fork 77
/
Copy pathpackage.json
104 lines (104 loc) · 3.79 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
104
{
"name": "@ORGANIZATION/PROJECT-backend",
"version": "0.1.0",
"description": "Backend for PROJECT",
"scripts": {
"benchmark": "rimraf prisma/migrations && node bin/test/benchmark",
"test": "rimraf prisma/migrations && node bin/test",
"------------------------BUILDS------------------------": "",
"build": "npm run build:prisma && npm run build:sdk && npm run build:main && npm run build:test",
"build:api": "rimraf packages/api/lib && nestia all && tsc -p packages/api/tsconfig.json && rollup -c packages/api/rollup.config.js",
"build:main": "rimraf lib && tsc",
"build:prisma": "prisma generate --schema=prisma/schema.prisma",
"build:sdk": "rimraf src/api/functional && nestia sdk",
"build:swagger": "nestia swagger",
"build:test": "rimraf bin && tsc -p test/tsconfig.json",
"dev": "npm run build:test -- --watch",
"eslint": "eslint src && eslint test",
"eslint:fix": "eslint src --fix && eslint test --fix",
"prepare": "ts-patch install && typia patch && npm run build:prisma",
"prettier": "prettier src --write && prettier test --write",
"------------------------WEBPACK------------------------": "",
"webpack": "rimraf dist && npm run build:prisma && webpack",
"webpack:start": "node dist/server",
"webpack:test": "npm run webpack && rimraf prisma/migrations && node bin/test/webpack.js",
"------------------------DEPLOYS------------------------": "",
"package:api": "npm run build:api && cd packages/api && npm publish --access public",
"start": "node lib/executable/server",
"start:dev": "nest start --watch",
"start:swagger": "ts-node src/executable/swagger.ts",
"schema": "ts-node src/executable/schema"
},
"repository": {
"type": "git",
"url": "https://github.com/samchon/backend"
},
"author": "AUTHOR",
"license": "MIT",
"bugs": {
"url": "https://github.com/samchon/backend/issues"
},
"homepage": "https://github.com/samchon/backend",
"devDependencies": {
"@nestia/benchmark": "^0.3.0",
"@nestia/e2e": "^0.8.0",
"@nestia/sdk": "^4.6.1",
"@nestjs/cli": "^10.4.9",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/cli": "^0.11.19",
"@types/cli-progress": "^3.11.5",
"@types/express": "^4.17.21",
"@types/inquirer": "^8.2.5",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^20.11.22",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"chalk": "^4.1.2",
"cli": "^1.0.1",
"cli-progress": "^3.12.0",
"commander": "10.0.0",
"copy-webpack-plugin": "^12.0.2",
"eslint-plugin-deprecation": "^3.0.0",
"inquirer": "^8.2.5",
"nestia": "^6.3.1",
"prettier": "^3.2.5",
"prettier-plugin-prisma": "^5.0.0",
"prisma-markdown": "^1.0.9",
"rimraf": "^3.0.2",
"rollup": "^4.18.0",
"sloc": "^0.2.1",
"swagger-ui-express": "^5.0.0",
"ts-loader": "^9.5.0",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"typescript": "~5.7.3",
"typescript-transform-paths": "^3.5.3",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4",
"write-file-webpack-plugin": "^4.5.1"
},
"dependencies": {
"@nestia/core": "^4.6.1",
"@nestia/fetcher": "^4.6.1",
"@nestjs/common": "^11.0.8",
"@nestjs/core": "^11.0.8",
"@nestjs/platform-express": "^11.0.8",
"@prisma/client": "^6.3.1",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"git-last-commit": "^1.0.0",
"jsonwebtoken": "^9.0.2",
"prisma": "^6.3.1",
"serialize-error": "^4.1.0",
"source-map-support": "^0.5.19",
"tgrid": "^1.1.0",
"tstl": "^3.0.0",
"typia": "^7.6.3",
"uuid": "^10.0.0"
},
"private": true
}