-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.23 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
{
"name": "typescript-express-typeorm-cleanarc-sample",
"version": "1.0.0",
"description": "Typescript + Express + TypeORM with CleanArchitecture Sample",
"main": "index.js",
"author": "pco2699",
"license": "MIT",
"private": false,
"scripts": {
"devBuild": "webpack --config webpack.config.dev.js",
"serve": "yarn && yarn devBuild && node dist/server.js"
},
"dependencies": {
"cookie-parser": "^1.4.3",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"express-promise-router": "^3.0.3",
"express-session": "^1.15.6",
"firebase": "^5.8.0",
"pg": "^7.8.0",
"reflect-metadata": "^0.1.13",
"routing-controllers": "^0.7.7",
"ts-node": "^8.0.2",
"typedi": "^0.8.0",
"typeorm": "^0.2.11",
"typeorm-typedi-extensions": "^0.2.3"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.1",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.0",
"@types/express-session": "^1.15.11",
"@types/node": "^10.12.18",
"ts-loader": "^5.3.3",
"tslint": "^5.12.1",
"tslint-config-airbnb": "^5.11.1",
"tslint-loader": "^3.5.4",
"typescript": "^3.2.4",
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1",
"webpack-node-externals": "^1.7.2"
}
}