-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.23 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.23 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "backendicm",
"version": "0.0.0",
"private": true,
"author": {
"name": "amell fezai"
},
"license": "MIT",
"main": "src/app.ts",
"nodemonConfig": {
"exec": "npm run dev",
"ext": "ts",
"watch": [
"src/*",
"public/*"
],
"ignore": [
"**/__tests__/**",
"*.test.js",
".git",
"node_modules"
]
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
],
"plugins": [
[
"@babel/plugin-proposal-decorators",
{
"legacy": true
}
],
[
"@babel/plugin-proposal-class-properties",
{
"loose": true
}
],
[
"@babel/plugin-transform-runtime",
{
"regenerator": true
}
],
"@babel/proposal-object-rest-spread"
]
},
"jest": {
"testEnvironment": "node"
},
"scripts": {
"start": "npm run prod",
"build": "npm-run-all clean transpile",
"server": "ts-node ./src/bin/www",
"dev": "NODE_ENV=development npm-run-all build server",
"migration:dev": "ts-node ./node_modules/typeorm/cli.js migration:run",
"prod": "NODE_ENV=production npm-run-all build server",
"transpile": "babel ./src --out-dir build --extensions .ts --copy-files",
"generate:swagger": "tsoa swagger && tsoa routes",
"clean": "rimraf build",
"watch:dev": "nodemon",
"test": "jest"
},
"dependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/runtime": "^7.9.2",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.6",
"@types/debug": "^4.1.5",
"@types/express": "^4.17.3",
"@types/helmet": "0.0.46",
"@types/jsonwebtoken": "^8.3.9",
"@types/node": "^13.9.5",
"@types/swagger-ui-express": "^4.1.2",
"@types/validator": "^12.0.1",
"bcryptjs": "^2.4.3",
"class-transformer": "^0.2.3",
"class-validator": "^0.11.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"dotenv": "^8.2.0",
"event-dispatch": "^0.4.1",
"express": "~4.16.1",
"helmet": "^3.22.0",
"http": "0.0.1-security",
"inversify": "^5.0.1",
"inversify-binding-decorators": "^4.0.0",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.9.1",
"multer": "^1.4.2",
"nodemon": "^2.0.2",
"npm-run-all": "^4.1.5",
"pg": "^7.18.2",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"routing-controllers": "^0.8.1-alpha.2",
"swagger-ui-express": "^4.1.4",
"ts-node": "^8.8.1",
"tslint-config-prettier": "^1.18.0",
"tsoa": "^2.5.13",
"typeorm": "^0.2.24",
"win-node-env": "^0.4.0",
"winston": "^3.2.1"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/preset-typescript": "^7.9.0",
"@types/body-parser": "^1.19.0",
"@types/multer": "^1.4.2",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint-config-airbnb-typescript": "^7.2.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.2.4",
"tslint": "^6.1.0",
"typescript": "^3.8.3"
}
}