-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
77 lines (77 loc) · 2.49 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
{
"name": "tweeter-backend",
"version": "1.0.0",
"main": "app.js",
"scripts": {
"tsc": "tsc",
"dev": "NODE_ENV=development nodemon src/bootstrap.ts",
"start": "NODE_ENV=production node src/bootstrap.ts",
"lint": "eslint --ext .ts .",
"docker:up": "docker-compose -p tweeter up -d",
"docker:down": "docker-compose -p tweeter down",
"docker:down-volumes": "docker-compose -p tweeter down -v",
"test": "NODE_ENV=test && jest --watchAll --verbose --runInBand",
"test:single": "NODE_ENV=test && jest --verbose test/tweet.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@ngneat/falso": "^6.1.0",
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.14",
"@types/jest": "^29.2.2",
"@types/jsonwebtoken": "^8.5.9",
"@types/mongoose": "^5.11.97",
"@types/supertest": "^2.0.12",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"got": "^12.5.2",
"jest": "^29.2.2",
"mongodb": "^4.11.0",
"mongodb-memory-server": "^8.10.0",
"node-fetch": "^3.2.10",
"nodemon": "^2.0.20",
"prettier": "2.7.1",
"supertest": "^6.3.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"tsc-alias": "^1.7.1",
"typescript": "^4.9.3"
},
"dependencies": {
"@sinclair/typebox": "^0.24.48",
"bcrypt": "^5.1.0",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"eventemitter2": "^6.4.9",
"express": "^4.18.1",
"inversify": "^6.0.1",
"inversify-express-utils": "^6.4.3",
"jsonwebtoken": "^8.5.1",
"module-alias": "^2.2.2",
"mongoose": "^6.6.5",
"reflect-metadata": "^0.1.13",
"uuid": "^9.0.0",
"uuid-random": "^1.3.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}