forked from gvoutyras/ts-node-express
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.75 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
{
"name": "ts-node-express",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --watch src -e ts --exec npm run start:gulp",
"start:gulp": "npm-run-all gulp start",
"gulp": "gulp",
"start": "node ./dist/app.js --no-api-key --dev",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "George Voutyras",
"license": "ISC",
"dependencies": {
"body-parser": "^1.19.1",
"colorts": "^0.1.63",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"ejs": "^3.1.6",
"express": "^4.17.1",
"express-ejs-layouts": "^2.5.1",
"express-list-endpoints": "^6.0.0",
"fs": "^0.0.1-security",
"helmet": "^5.0.1",
"lodash": "^4.17.21",
"minimist": "^1.2.5",
"module-alias": "^2.2.2",
"mongoose": "^6.1.5",
"morgan": "^1.10.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-ejs-layouts": "^2.5.0",
"@types/express-list-endpoints": "^6.0.0",
"@types/lodash": "^4.14.178",
"@types/minimist": "^1.2.2",
"@types/mongoose": "^5.10.5",
"@types/morgan": "^1.9.3",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"del": "^6.0.0",
"eslint": "^8.3.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"gulp": "^4.0.2",
"gulp-typescript": "^6.0.0-alpha.1",
"npm-run-all": "^4.1.5",
"ts-node": "^10.4.0",
"typescript": "^4.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1"
},
"_moduleAliases": {
"@utilities": "./dist/utilities",
"@middlewares": "./dist/middlewares",
"@types": "./dist/types"
}
}