-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1007 Bytes
/
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
{
"name": "advertisements",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"start": "ts-node ./src/app.ts",
"build": "tsc && webpack --config ./webpack.config.js",
"rules": "tslint -c tslint.json src/**/*.ts"
},
"author": "Adrian Yordanov",
"license": "ISC",
"dependencies": {
"@types/cors": "^2.8.4",
"@types/express": "^4.16.1",
"@types/jsonwebtoken": "^8.3.0",
"@types/mongodb": "^3.1.26",
"@types/morgan": "^1.7.35",
"@types/multer": "^1.3.7",
"bcrypt": "^3.0.6",
"body-parser": "^1.18.3",
"cors": "^2.8.5",
"express": "^4.16.4",
"jsonwebtoken": "^8.4.0",
"mongodb": "^3.2.4",
"morgan": "^1.9.1",
"multer": "^1.4.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"ts-node": "^8.0.2",
"tslint": "^5.16.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.3.3",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^1.7.2"
}
}