-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.18 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
{
"name": "node-typescript-boilerplate",
"version": "0.0.0",
"description": "Minimalistic boilerplate to quick-start Node.js development in TypeScript.",
"engines": {
"node": ">= 16.13 <17"
},
"scripts": {
"start": "node ./build/bin/www.js",
"dev": "nodemon",
"depcheck": "depcheck",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"dependencies": {
"@types/cors": "^2.8.12",
"aigle": "^1.14.1",
"awilix": "^7.0.3",
"cors": "^2.8.5",
"depcheck": "^1.4.3",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-slow-down": "^1.5.0",
"glob": "^8.0.3",
"helmet": "^6.0.0",
"joi": "^17.6.3",
"lodash": "^4.17.21",
"octokit": "^2.0.7",
"swagger-jsdoc": "^6.2.5",
"swagger-ui-express": "^4.5.0"
},
"devDependencies": {
"@types/express": "^4.17.14",
"@types/express-slow-down": "^1.3.2",
"@types/glob": "^8.0.0",
"@types/jest": "~27.5",
"@types/lodash": "^4.14.186",
"@types/node": "~16",
"@types/supertest": "^2.0.12",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "~5.26",
"@typescript-eslint/parser": "~5.26",
"eslint": "~8.16",
"eslint-config-prettier": "~8.5",
"eslint-plugin-jest": "~26.2",
"husky": "^8.0.1",
"jest": "~28.1",
"nodemon": "^2.0.20",
"prettier": "~2.6",
"rimraf": "~3.0",
"supertest": "^6.3.0",
"ts-jest": "~28.0",
"typescript": "~4.7"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"node_modules/variables/.+\\.(j|t)sx?$": "ts-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
],
"testPathIgnorePatterns": [
"__tests__/utils"
]
},
"author": "Rijad Lendo",
"license": "Apache-2.0"
}