-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.79 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
{
"name": "feirinha",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "mocha -r ts-node/register tests/**/**/*.test.js --exit -t 60000",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration --runInBand ",
"db:reset": "docker exec feirinha_db mongo --eval feirinha.dropDatabase",
"lint": "eslint . --ext .ts",
"dev": "ts-node-dev src/server.ts",
"start": "node dist/src/server.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@types/bcryptjs": "^2.4.2",
"@types/chai": "4.3.0",
"@types/chai-http": "^4.2.0",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.2",
"@types/mocha": "^9.1.1",
"@types/nodemailer": "^6.4.14",
"@types/sinon": "10.0.11",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"babel-jest": "^29.5.0",
"chai": "4.3.6",
"chai-http": "4.3.0",
"eslint": "^8.40.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.5.0",
"mocha": "9.2.2",
"mongodb-memory-server": "^8.13.0",
"sinon": "^13.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fs-extra": "^11.1.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.4",
"mongodb": "^5.6.0",
"mongoose": "^6.1.8",
"nodemailer": "^6.9.9"
}
}