-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.9 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
{
"name": "bookingproject",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"type": "commonjs",
"devDependencies": {
"@types/chai": "^4.3.1",
"@types/chai-http": "^4.2.0",
"@types/mocha": "^9.1.1",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.10",
"@types/otp-generator": "^4.0.0",
"@types/sinon": "^10.0.12",
"@types/swagger-ui-express": "^4.1.3",
"@types/yamljs": "^0.2.31",
"chai": "^4.3.6",
"chai-http": "^4.3.0",
"mocha": "^10.0.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.16",
"nyc": "^15.1.0",
"sinon": "^14.0.0",
"ts-node": "10.7.0",
"typescript": "4.5.2"
},
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^8.3.4",
"bcrypt": "^5.0.1",
"class-validator": "^0.13.2",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-validator": "^6.14.0",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"nodemailer": "^6.7.5",
"otp-generator": "^4.0.0",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"stripe": "^9.0.0",
"swagger-ui-express": "^4.5.0",
"typeorm": "0.3.6",
"yamljs": "^0.3.0"
},
"scripts": {
"start": "ts-node src/index.ts",
"typeorm": "typeorm-ts-node-commonjs",
"dev": "nodemon --exec ts-node src/index.ts --watch ",
"test": "mocha -require ts-node/register test/*/*.*.ts",
"test:watch": "mocha -r ts-node/register --watch --watch-files domains/**/*.ts,test/*/*.*.ts test/*/*.*.ts",
"coverage": "nyc --reporter=html mocha -require ts-node/register test/*/*.*.ts "
}
}