-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.38 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
{
"name": "advanced-node",
"version": "0.0.1",
"description": "Professional API using Clean Architecture and TDD",
"keywords": [
"clean architecture",
"clean code",
"tdd",
"ddd",
"solid",
"design patterns",
"node",
"typescript",
"jest",
"typeorm"
],
"author": {
"name": "Silvio Lucas - SLDS",
"email": "[email protected]"
},
"scripts": {
"start": "node -r dotenv/config dist/main",
"dev": "ts-node-dev --respawn --transpile-only -r dotenv/config --inspect=0.0.0.0:9229 src/main",
"build": "rimraf dist && tsc -p tsconfig-build.json",
"prepare": "husky install",
"check": "npm-check -s -u",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"test": "jest --passWithNoTests --no-cache --runInBand",
"test:watch": "npm test -- --watch",
"test:staged": "npm test -- --findRelatedTests",
"test:coverage": "npm test -- --coverage",
"test:coveralls": "npm run test:coverage && coveralls < coverage/lcov.info",
"test:fb-api": "npm test -- -c ./jest.integration.config.js ./tests/external/facebook-api.test.ts",
"test:s3": "npm test -- -c ./jest.integration.config.js ./tests/external/aws-s3-file-storage.test.ts"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.379.1",
"axios": "^1.4.0",
"cors": "^2.8.5",
"coveralls": "^3.1.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"module-alias": "^2.2.3",
"multer": "^1.4.5-lts.1",
"pg": "^8.11.1",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1",
"typeorm": "0.2.29",
"uuid": "^9.0.0"
},
"devDependencies": {
"@jest-mock/express": "^2.0.2",
"@types/aws-sdk": "^2.7.0",
"@types/axios": "^0.14.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/module-alias": "^2.0.1",
"@types/multer": "^1.4.7",
"@types/node": "^20.4.5",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.2",
"dotenv": "^16.3.1",
"eslint-config-standard-with-typescript": "^37.0.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"jest-mock-extended": "^3.0.4",
"lint-staged": "^13.2.3",
"mockdate": "^3.0.5",
"pg-mem": "^1.9.17",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"engines": {
"node": "20.x"
}
}