generated from m-valkov/ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "scout-backend",
"version": "2.0.1",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "tsc --build --clean && tsc --build",
"post-build": "cp package.json dist/package.json && cp package-lock.json dist/package-lock.json && cp -r docs dist && cd dist && npm ci --production",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"stage": "node index.js",
"make-badges": "istanbul-badges-readme && git add 'README.md'",
"make-docs": "npx typedoc --entryPoints src --entryPointStrategy expand --out docs --plugin ./node_modules/typedoc-theme-hierarchy/dist/index.js --theme hierarchy && git add docs/"
},
"keywords": [
"typescript",
"rest",
"express"
],
"author": "Mikhail Valkov",
"license": "MIT",
"engines": {
"node": "^16.13.1"
},
"devDependencies": {
"@types/compression": "^1.7.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.0",
"@types/mongoose": "^5.11.97",
"@types/morgan": "^1.9.3",
"@types/node": "^17.0.12",
"@types/passport": "^1.0.7",
"@types/supertest": "^2.0.11",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"autocannon": "^7.6.0",
"eslint": "^8.10.0",
"eslint-plugin-import": "^2.25.4",
"istanbul-badges-readme": "^1.8.1",
"jest": "^27.4.7",
"npm-run-all": "^4.1.5",
"supertest": "^6.2.2",
"ts-jest": "^27.1.3",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.22.12",
"typedoc-theme-hierarchy": "^1.0.14",
"typescript": "^4.6.2"
},
"dependencies": {
"@sentry/node": "^6.18.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"express-basic-auth": "^1.2.1",
"express-rate-limit": "^6.2.0",
"helmet": "^5.0.2",
"mongoose": "^6.2.4",
"morgan": "^1.10.0",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.3.0",
"telegraf": "^4.6.0",
"winston": "^3.4.0"
}
}