-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 3.13 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
{
"name": "Nodejs-API-IntegrationWithFacebook",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "babel src --extensions \".js,.ts\" --out-dir dist --copy-files --no-copy-ignored",
"dev": "ts-node-dev -r tsconfig-paths/register --respawn --transpile-only -r dotenv/config --inspect=0.0.0.0:9229 src/main/start/server.ts",
"start": "node -r dotenv/config dist/main/start/server.js",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --setupFiles dotenv/config --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:coverage": "npm test -- --coverage",
"test:facebook-api": "npm test -- --c ./jest.integration.config.js ./tests/external/facebook.api.test.ts",
"test:s3-amazon": "npm test -- --c ./jest.integration.config.js ./tests/external/aws.s3.file.storage.test.ts",
"prepare": "husky install",
"clear_jest": "jest --clearCache"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Christiangsn/Nodejs-API-IntegrationWithFacebook.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Christiangsn/Nodejs-API-IntegrationWithFacebook/issues"
},
"homepage": "https://github.com/Christiangsn/Nodejs-API-IntegrationWithFacebook#readme",
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/node": "^7.18.10",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@jest-mock/express": "^2.0.1",
"@types/aws-sdk": "^2.7.0",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.5",
"@types/jsonwebtoken": "^8.5.8",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.4",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"babel-plugin-module-resolver": "^4.1.0",
"babel-plugin-transform-typescript-metadata": "^0.3.2",
"eslint": "^8.0.1",
"eslint-config-standard-with-typescript": "^22.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-mock-extended": "^2.0.6",
"pg-mem": "^1.9.17",
"supertest": "^6.2.4",
"ts-jest": "^28.0.6",
"ts-node-dev": "^2.0.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.7.4"
},
"engines": {
"node": "16.x"
},
"dependencies": {
"aws-sdk": "^2.1211.0",
"axios": "^0.27.2",
"cors": "^2.8.5",
"dotenv": "^16.0.2",
"express": "^4.18.1",
"jsonwebtoken": "^8.5.1",
"lint-staged": "^13.0.3",
"module-alias": "^2.2.2",
"multer": "^1.4.5-lts.1",
"pg": "^8.7.3",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"typeorm": "^0.2.29",
"uuid": "^9.0.0"
}
}