-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
74 lines (74 loc) · 2.34 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
64
65
66
67
68
69
70
71
72
73
74
{
"name": "typescript-postgres-auth-example",
"version": "1.0.0",
"description": "RBAC / ABAC authorization example app",
"main": "dist/server.js",
"scripts": {
"build": "./node_modules/.bin/tsc",
"lint": "./node_modules/.bin/tslint -c tslint.json 'src/**/*.ts'",
"start": "NODE_ENV=production node dist/server.js",
"dev": "NODE_ENV=development tsc-watch --onSuccess \"node ./dist/server.js\"",
"test": "./node_modules/.bin/jest --verbose --detectOpenHandles --forceExit --maxWorkers 2",
"coverage": "./node_modules/.bin/jest --coverage --verbose"
},
"dependencies": {
"@sendgrid/mail": "^6.3.1",
"accesscontrol": "^2.2.1",
"bcrypt": "^3.0.4",
"class-transformer": "^0.2.0",
"class-validator": "^0.9.1",
"compression": "^1.7.3",
"cookie-parser": "^1.4.4",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"elasticsearch": "^15.4.1",
"envalid": "^4.2.2",
"express": "^4.16.4",
"google-libphonenumber": "^3.2.2",
"helmet": "^3.15.1",
"ioredis": "^4.6.2",
"jexl": "^2.1.1",
"jsonwebtoken": "^8.4.0",
"moment": "^2.24.0",
"pg": "^7.8.0",
"request-promise": "^4.2.2",
"swagger-ui-express": "^4.0.2",
"typeorm": "^0.2.13",
"ua-parser-js": "^0.7.19",
"uuid": "^3.3.2",
"winston": "^3.2.1"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/compression": "0.0.36",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.4",
"@types/dotenv": "^6.1.0",
"@types/elasticsearch": "^5.0.31",
"@types/express": "^4.16.1",
"@types/google-libphonenumber": "^7.4.17",
"@types/helmet": "0.0.42",
"@types/ioredis": "^4.0.6",
"@types/jest": "^23.3.14",
"@types/jexl": "^1.1.2",
"@types/jsonwebtoken": "^8.3.0",
"@types/node": "^10.12.26",
"@types/request-promise": "^4.1.42",
"@types/supertest": "^2.0.7",
"@types/swagger-ui-express": "^3.0.0",
"@types/ua-parser-js": "^0.7.32",
"@types/uuid": "^3.4.4",
"jest": "^23.6.0",
"supertest": "^3.4.2",
"ts-jest": "^23.10.5",
"tsc-watch": "^1.1.39",
"tslint": "^5.12.1",
"typescript": "^3.3.3"
},
"author": "Mike Sparr",
"license": "ISC",
"bugs": {
"url": "https://github.com/mikesparr/typescript-postgres-auth-example/issues"
},
"homepage": "https://github.com/mikesparr/typescript-postgres-auth-example#readme"
}