-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.24 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
{
"name": "oauthentic",
"version": "0.0.1",
"author": "Thomas Lipari <thomas.lipari@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/flamingYawn/oauthentic"
},
"license": "mit",
"scripts": {
"start": "ts-node ./scripts/start",
"build": "ts-node ./scripts/build",
"lint": "tslint -p tsconfig.json",
"start:prod": "NODE_ENV=production ts-node build/server.js",
"db:generate": "./node_modules/typeorm/cli.js migration:generate -n ",
"db:migrate:up": "./node_modules/.bin/typeorm migration:run",
"db:migrate:down": "./node_modules/.bin/typeorm migration:revert"
},
"dependencies": {
"@types/bcrypt": "^3.0.0",
"@types/connect-ensure-login": "^0.1.4",
"@types/connect-redis": "^0.0.10",
"@types/cors": "^2.8.4",
"@types/errorhandler": "^0.0.32",
"@types/express": "^4.16.1",
"@types/express-session": "^1.15.12",
"@types/fs-extra": "^5.0.5",
"@types/morgan": "^1.7.35",
"@types/node": "^11.13.8",
"@types/oauth2orize": "^1.8.5",
"@types/passport": "^1.0.0",
"@types/passport-http": "^0.3.7",
"@types/passport-http-bearer": "^1.0.33",
"@types/passport-local": "^1.0.33",
"@types/passport-oauth2-client-password": "^0.1.2",
"@types/reflect-metadata": "^0.1.0",
"@types/signale": "^1.2.1",
"@types/webpack-env": "^1.13.7",
"babel-loader": "7.1.4",
"bcrypt": "^5.0.0",
"body-parser": "^1.18.3",
"connect-ensure-login": "^0.1.1",
"connect-redis": "^3.4.1",
"cors": "^2.8.5",
"errorhandler": "^1.5.0",
"express": "^4.16.4",
"express-session": "^1.16.1",
"morgan": "^1.9.1",
"oauth2orize": "^1.11.0",
"passport": "^0.4.0",
"passport-http": "^0.3.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"passport-oauth2-client-password": "^0.1.2",
"pg": "^7.10.0",
"razzle": "^2.4.1",
"razzle-plugin-typescript": "^2.4.1",
"reflect-metadata": "^0.1.13",
"signale": "^1.4.0",
"ts-node": "^8.1.0",
"tslint": "^5.12.1",
"typeorm": "^0.2.25",
"typescript": "^3.3.3333"
},
"devDependencies": {
"prettier": "^1.16.4",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1"
},
"engines": {
"node": "~10.13.0"
}
}