-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
102 lines (102 loc) · 3.02 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
{
"name": "goabela-accounts__server",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:unit": "NODE_ENV=test jest --config=jest-unit.json",
"test:e2e": "NODE_ENV=test jest --config=jest-e2e.json --forceExit",
"cli": "ts-node -T -r tsconfig-paths/register src/cli/cli.ts",
"cli:serve": "nodemon -x npm run cli",
"app": "ts-node -r tsconfig-paths/register src/app/start.ts",
"app:serve": "nodemon -x npm run app",
"typeorm": "ts-node -T -r tsconfig-paths/register ./node_modules/typeorm/cli.js",
"build": "tsc --build tsconfig.json",
"postinstall": "link-module-alias"
},
"repository": {
"type": "git",
"url": "git+https://github.com/belaarany/accounts__server.git"
},
"author": "Bela Arany",
"license": "ISC",
"bugs": {
"url": "https://github.com/belaarany/accounts__server/issues"
},
"homepage": "https://github.com/belaarany/accounts__server#readme",
"_moduleAliases": {
"~src": "src",
"~src/*": "src/*",
"~app": "src/app",
"~app/*": "src/app/*",
"~cli": "src/cli",
"~cli/*": "src/cli/*",
"@controllers": "src/app/controllers",
"@controllers/*": "src/app/controllers/*",
"@helpers": "src/app/helpers",
"@helpers/*": "src/app/helpers/*",
"@middlewares": "src/app/middlewares",
"@middlewares/*": "src/app/middlewares/*",
"@models": "src/app/models",
"@models/*": "src/app/models/*",
"@utils": "src/app/utils",
"@utils/*": "src/app/utils/*",
"@services": "src/app/services",
"@services/*": "src/app/services/*",
"@exceptions": "src/app/exceptions",
"@exceptions/*": "src/app/exceptions/*"
},
"devDependencies": {
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/jest": "^24.0.18",
"@types/node": "^12.6.8",
"@types/vorpal": "^1.11.0",
"axios": "^0.19.2",
"faker": "^4.1.0",
"jest": "^24.9.0",
"link-module-alias": "^1.2.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^24.0.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"camelcase-keys": "^6.0.1",
"chalk": "^2.4.2",
"class-transformer": "^0.2.3",
"class-validator": "^0.9.1",
"clear": "^0.1.0",
"cli-table": "^0.3.1",
"crypto-random-string": "^3.0.1",
"cryptr": "^4.0.2",
"dotenv": "^8.0.0",
"envalid": "^5.0.0",
"etag": "^1.8.1",
"express": "^4.17.1",
"express-bearer-token": "^2.4.0",
"express-list-endpoints": "^4.0.1",
"express-mung": "^0.5.1",
"glob": "^7.1.4",
"i": "^0.3.6",
"install": "^0.13.0",
"md5": "^2.2.1",
"moment": "^2.24.0",
"mysql": "^2.17.1",
"npm": "^6.10.2",
"pg": "^7.11.0",
"reflect-metadata": "^0.1.13",
"snakecase-keys": "^3.1.0",
"treeify": "^1.1.0",
"typeorm": "^0.2.18",
"typeorm-naming-strategies": "^1.1.0",
"uuid": "^3.3.2",
"vorpal": "^1.12.0",
"winston": "^3.2.1"
}
}