-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "node_basic_auth",
"version": "0.0.0",
"scripts": {
"build": "node ./util/build.js",
"lint": "tslint --project \"tsconfig.json\"",
"start": "node -r module-alias/register ./dist",
"start:dev": "nodemon --config nodemon.json",
"test": "nodemon --config nodemon.test.json"
},
"_moduleAliases": {
"@daos": "dist/daos",
"@entities": "dist/entities",
"@shared": "dist/shared",
"@server": "dist/Server",
"@models": "dist/models"
},
"dependencies": {
"bcrypt": "^3.0.7",
"command-line-args": "^5.1.1",
"cookie-parser": "^1.4.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"http-status-codes": "^1.4.0",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"morgan": "^1.9.1",
"randomstring": "^1.1.5",
"winston": "^3.2.1",
"mongodb": "^3.4.1",
"mongoose": "^5.8.7",
"node-linkedin": "^0.5.6"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/command-line-args": "^5.0.0",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.2",
"@types/find": "^0.2.1",
"@types/jasmine": "^3.5.0",
"@types/jsonfile": "^5.0.0",
"@types/jsonwebtoken": "^8.3.5",
"@types/morgan": "^1.7.37",
"@types/node": "^13.1.6",
"@types/randomstring": "^1.1.6",
"@types/supertest": "^2.0.8",
"@types/mongoose": "^5.5.41",
"@types/mongodb": "^3.3.14",
"find": "^0.3.0",
"fs-extra": "^8.1.0",
"jasmine": "^3.5.0",
"jsonfile": "^5.0.0",
"nodemon": "^2.0.2",
"supertest": "^4.0.2",
"ts-node": "^8.6.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"tslint-lines-between-class-members": "^1.3.6",
"typescript": "^3.7.4"
}
}