-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.38 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
{
"name": "typescript-starter",
"version": "0.0.1",
"description": "Amazing typescript starter",
"types": "lib/index.d.ts",
"main": "lib/index.js",
"repository": "https://github.com/mehdi-ra/typescript-starter",
"author": "me-dira <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"devDependencies": {
"@types/amqplib": "^0.10.1",
"@types/eventsource": "^1.1.6",
"@types/express": "^4.17.17",
"@types/jest": "^26.0.24",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"eslint": "^8.19.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-xo": "^0.41.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^27.0.6",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^6.0.1",
"ts-jest": "^27.0.4",
"typescript": "^4.9.4"
},
"scripts": {
"test": "jest --config jest.config.js",
"build": "tsc --project tsconfig.build.json",
"start:watch": "concurrently \"yarn ts:dev\" \"yarn nodemon:dev\" \"yarn build\" -c \"auto,auto\" ",
"ts:dev": "tsc --watch --project tsconfig.build.json",
"nodemon:dev": "nodemon lib/index.js --watch",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint",
"prepare": "npm run build",
"prepublish": "yarn build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"_moduleAliases": {
"@repositories": "./src/domain/repositories",
"@models": "lib/domain/models",
"@services": "lib/domain/services",
"@infrastructures": "lib/infrastructures",
"@database": "lib/infrastructures/database",
"@external_service": "lib/infrastructures/external_service",
"@interfaces": "lib/interfaces",
"@controllers": "lib/interfaces/controllers",
"@gateways": "lib/interfaces/gateways",
"@shared": "lib/shared",
"@constants": "lib/shared/constants",
"@usecases": "lib/usecases",
"@utilities": "lib/utilities",
"src": "lib"
},
"dependencies": {
"amqplib": "^0.10.3",
"concurrently": "^8.2.0",
"express": "^4.18.2",
"module-alias": "^2.2.2",
"module-alias-jest": "^0.0.3",
"nodemon": "^2.0.22",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.7.0"
}
}