-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.73 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
{
"name": "typescript-service",
"version": "0.0.1",
"description": "The starting point template repository for developing typescript microservices.",
"main": "dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "env-cmd nodemon ./src/index.ts",
"test": "env-cmd jest --coverage --detectOpenHandles",
"prettier": "npx prettier --write .",
"lint": "npx eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/TogetherCrew/typescript-service.git"
},
"keywords": [
"template",
"typescript",
"micro-service"
],
"author": "cyri113",
"license": "ISC",
"bugs": {
"url": "https://github.com/TogetherCrew/typescript-service/issues"
},
"homepage": "https://github.com/TogetherCrew/typescript-service#readme",
"dependencies": {
"@bull-board/api": "^5.2.0",
"@bull-board/express": "^5.2.0",
"bullmq": "^3.13.4",
"env-cmd": "^10.1.0",
"express": "^4.18.2",
"joi": "^17.9.2",
"mongoose": "^7.2.0",
"test": "^3.3.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.2.1",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "2.8.8",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}