This repository was archived by the owner on Mar 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.97 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.97 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
{
"name": "meldhet-backend",
"version": "0.0.1",
"description": "MeldHet backend service.",
"main": "dist/app.js",
"scripts": {
"start": "tsc && npm run serve",
"watch-node": "nodemon dist/server.js",
"serve": "node dist/server.js",
"compile": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cheesycode/meldhet-backend.git"
},
"keywords": [
"nodejs",
"typescript",
"azure",
"cv"
],
"author": "cheesycode.com",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/cheesycode/meldhet-backend/issues"
},
"homepage": "https://github.com/cheesycode/meldhet-backend#readme",
"devDependencies": {
"@types/async": "^2.4.1",
"@types/bcrypt-nodejs": "^0.0.30",
"@types/bluebird": "^3.5.26",
"@types/body-parser": "^1.16.8",
"@types/compression": "^0.0.35",
"@types/connect-mongo": "^0.0.35",
"@types/dotenv": "^4.0.2",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/jest": "^22.1.3",
"@types/jquery": "^3.3.29",
"@types/lodash": "^4.14.122",
"@types/lusca": "^1.5.0",
"@types/mongodb": "^3.1.20",
"@types/mongoose": "^4.7.43",
"@types/morgan": "^1.7.35",
"@types/node": "^9.6.44",
"@types/nodemailer": "^4.6.6",
"@types/passport": "^0.4.7",
"@types/passport-facebook": "^2.1.7",
"@types/passport-local": "^1.0.32",
"@types/request": "^2.48.1",
"@types/shelljs": "^0.7.8",
"@types/supertest": "^2.0.7",
"@types/winston": "^2.3.7",
"chai": "^4.2.0",
"concurrently": "^3.5.1",
"jest": "^24.1.0",
"node-sass": "^4.11.0",
"nodemon": "^1.18.10",
"shelljs": "^0.8.3",
"supertest": "^3.4.2",
"ts-jest": "^24.0.0",
"ts-node": "^5.0.0",
"tslint": "^5.13.1",
"typescript": "^2.7.2"
},
"dependencies": {
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"fcm-node": "^1.3.0",
"firebase": "^5.8.5"
}
}