-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.69 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
{
"name": "gb-backend",
"version": "0.0.0",
"author": "Nathan G.A. Fischer",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/NathanAlcantara/gb-backend"
},
"main": "dist/server.js",
"scripts": {
"start": "nodemon --watch \"src/\" --exec \"ts-node -r dotenv/config src/server.ts dotenv_config_path=./../.env\" -e ts",
"start:prod": "yarn clean && yarn build && PROD=true nodenv --env ./../.env .",
"lint": "eslint ./src/**/*.{js,ts,tsx} --fix",
"build": "yarn lint && tsc",
"clean": "rm -rf dist/"
},
"dependencies": {
"aws-sdk": "^2.441.0",
"bcrypt": "^3.0.6",
"bluebird": "^3.5.4",
"connect-mongo": "^2.0.3",
"cookie-parser": "~1.4.3",
"cors": "^2.8.5",
"debug": "~2.6.9",
"eslint-plugin-import": "^2.17.2",
"express": "^4.16.4",
"express-graphql": "^0.8.0",
"graphql": "^14.3.1",
"graphql-tools": "^4.0.5",
"mongoose": "^5.5.1",
"morgan": "~1.9.0",
"multer": "^1.4.1",
"multer-s3": "^2.9.0",
"node-env-run": "^3.0.2",
"nodemailer": "^6.1.1",
"passport": "^0.4.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth": "^2.0.0",
"passport-instagram": "^1.0.0",
"passport-local": "^1.0.0",
"passport-twitter": "^1.0.4"
},
"devDependencies": {
"@types/express": "^4.16.1",
"@types/mongoose": "^5.5.6",
"@types/multer": "^1.3.7",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"dotenv": "^8.0.0",
"eslint": "^5.16.0",
"nodemon": "^1.19.0",
"ts-node": "^8.1.0",
"typescript": "^3.4.5"
},
"engines": {
"node": ">=10.13.0",
"npm": ">=6.4.1",
"yarn": ">=1.15.2"
}
}