-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
109 lines (109 loc) · 3.44 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "coqonect-server",
"version": "1.0.0",
"description": "",
"main": "build/startServer.js",
"scripts": {
"start": "cross-env NODE_ENV=production yarn build && node build/startServer.js",
"postinstall": "cross-env NODE_ENV=production yarn build",
"prod-deploy": "npm run build:js && pm2 restart startServer",
"dev": "cross-env NODE_ENV=development nodemon",
"tslint": "tslint -c tslint.json 'src/**/*.ts'",
"type-check:watch": "yarn type-check --watch",
"build": "yarn build:js",
"build:types": "tsc",
"build:js": "babel src --out-dir build --extensions \".ts,.js\" --source-maps inline",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hector101/coqonect.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hector101/coqonect/issues"
},
"homepage": "https://github.com/Hector101/coqonect#readme",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bluebird": "^3.5.27",
"@types/compression": "1.0.1",
"@types/cookie-parser": "^1.4.1",
"@types/cors": "^2.8.5",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.16.1",
"@types/express-graphql": "^0.9.0",
"@types/express-useragent": "^1.0.0",
"@types/express-validator": "^3.0.0",
"@types/helmet": "0.0.45",
"@types/html-to-text": "^1.4.31",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.134",
"@types/multer": "^1.4.2",
"@types/node": "^12.11.5",
"@types/passport": "^1.0.0",
"@types/passport-local": "^1.0.33",
"@types/passport-oauth2": "^1.4.8",
"@types/pug": "^2.0.4",
"@types/randomstring": "^1.1.6",
"@types/uuid": "^3.4.5",
"@types/validator": "^10.11.1",
"nodemon": "^1.19.4",
"prettier": "1.19.1",
"random-email": "^1.0.3",
"ts-node": "^8.5.0",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.1",
"typescript": "^3.7.2"
},
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "^7.6.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/preset-env": "^7.4.5",
"@babel/preset-typescript": "^7.3.3",
"@hapi/joi": "^16.1.7",
"@passport-next/passport-google-oauth2": "^1.0.0",
"@sendgrid/mail": "^6.3.1",
"apollo-server-express": "^2.9.6",
"babel-plugin-transform-typescript-metadata": "^0.2.2",
"babel-polyfill": "^6.26.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"cross-env": "^6.0.3",
"crypto-random-string": "^3.0.1",
"dataloader": "^1.4.0",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"express-useragent": "^1.0.12",
"express-validator": "^6.1.1",
"generate-password": "^1.4.2",
"graphql": "^14.5.8",
"helmet": "^3.15.1",
"ipinfo": "^1.3.9",
"jimp": "^0.9.3",
"jsonwebtoken": "^8.5.0",
"lodash": "^4.17.11",
"moment": "^2.24.0",
"multer": "^1.4.2",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"pg": "^7.8.0",
"pg-hstore": "^2.3.2",
"pug": "^2.0.3",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.24",
"uuid": "^3.3.2",
"winston-env-logger": "^1.0.6"
},
"private": true,
"npmClient": "yarn"
}