-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
111 lines (111 loc) · 3.85 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
105
106
107
108
109
110
111
{
"name": "tsed-example-mongoose",
"version": "1.0.0",
"description": "Here an example project with Mongoose and Ts.ED framework.",
"scripts": {
"install:db:mock": "cross-env MONGOMS_VERSION=6.0.0 node node_modules/mongodb-memory-server/postinstall.js",
"clean": "rimraf '{src,test}/**/*.{js,js.map}'",
"build": "yarn run barrels && tsc --project tsconfig.compile.json",
"test": "yarn run test:lint && yarn run test:coverage ",
"test:unit": "cross-env NODE_ENV=test jest",
"test:coverage": "yarn run test:unit ",
"travis:deploy-once": "travis-deploy-once",
"travis:coveralls": "nyc report --reporter=text-lcov | coveralls",
"tsc": "tsc --project tsconfig.compile.json",
"tsc:w": "tsc --project tsconfig.json -w",
"start": "yarn run barrels && tsnd --inspect --exit-child --cls --ignore-watch node_modules --respawn --transpile-only src/index.ts",
"start:prod": "cross-env NODE_ENV=production node dist/index.js",
"docker:build": "yarn build && docker-compose build",
"deploy": "exit 0",
"barrels": "barrelsby --config .barrelsby.json",
"test:lint": "eslint '**/*.{ts,js}'",
"test:lint:fix": "eslint '**/*.{ts,js}' --fix",
"prettier": "prettier '**/*.{ts,js,json,md,yml,yaml}' --write",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@tsed/ajv": "^7.70.0",
"@tsed/common": "^7.70.0",
"@tsed/core": "^7.70.0",
"@tsed/di": "^7.70.0",
"@tsed/engines": "^7.70.0",
"@tsed/exceptions": "^7.70.0",
"@tsed/json-mapper": "^7.70.0",
"@tsed/logger": "^6.7.5",
"@tsed/logger-file": "^6.7.5",
"@tsed/mongoose": "^7.70.0",
"@tsed/openspec": "^7.70.0",
"@tsed/platform-cache": "^7.70.0",
"@tsed/platform-exceptions": "^7.70.0",
"@tsed/platform-express": "^7.70.0",
"@tsed/platform-log-middleware": "^7.70.0",
"@tsed/platform-middlewares": "^7.70.0",
"@tsed/platform-params": "^7.70.0",
"@tsed/platform-response-filter": "^7.70.0",
"@tsed/platform-views": "^7.70.0",
"@tsed/schema": "^7.70.0",
"@tsed/swagger": "^7.70.0",
"@tsed/testing-mongoose": "^7.70.0",
"@types/swagger-schema-official": "2.0.21",
"ajv": "^8.17.1",
"barrelsby": "^2.8.1",
"body-parser": "^1.20.2",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.5",
"dotenv-expand": "^11.0.6",
"dotenv-flow": "^4.1.0",
"express": "^4.19.2",
"express-session": "1.17.1",
"method-override": "^3.0.0",
"mongoose": "^8.6.0",
"serve-static": "^1.13.1"
},
"devDependencies": {
"@tsed/cli-plugin-eslint": "5.2.7",
"@tsed/cli-plugin-jest": "5.2.7",
"@tsed/cli-plugin-mongoose": "5.2.7",
"@tsed/testing-mongoose": "7.70.0",
"@types/compression": "^1.7.5",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/http-proxy": "^1.17.1",
"@types/jest": "^29.5.12",
"@types/method-override": "^0.0.35",
"@types/multer": "^1.4.12",
"@types/node": "^22.5.1",
"@types/request-promise": "^4.1.42",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^8.3.0",
"@typescript-eslint/parser": "^8.3.0",
"concurrently": "5.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.5",
"is-ci": "^3.0.1",
"jest": "^29.7.0",
"lint-staged": "^15.2.9",
"nodemon": "2.0.6",
"prettier": "^3.3.3",
"rimraf": "^3.0.0",
"supertest": "^7.0.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"tslib": "^2.7.0",
"typescript": "^5.5.4"
},
"author": "",
"license": "MIT",
"tsed": {
"convention": "conv_default",
"architecture": "arc_default",
"packageManager": "yarn",
"runtime": "node"
},
"packageManager": "[email protected]"
}