-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
67 lines (67 loc) · 2.61 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
{
"name": "ptx-billing-component",
"version": "1.0.0-beta",
"description": "",
"main": "src/index.ts",
"scripts": {
"dev": "nodemon L --development",
"start": "node ./dist/index.js --production",
"build": "rimraf ./dist && tsc --project tsconfig.build.json",
"test:unitary": "npx ts-mocha --reporter mochawesome --reporter-options reportFilename=unitaryReport -p tsconfig.json tests/unitary/*.spec.ts --timeout 4000 --exit --test",
"test:functional": "npx ts-mocha --reporter mochawesome --reporter-options reportFilename=functionalReport -p tsconfig.json tests/functional/*.spec.ts --timeout 4000 --exit --test --serial",
"test:scenario": "npx ts-mocha --reporter mochawesome --reporter-options reportFilename=scenarioReport -p tsconfig.json tests/scenario/*.spec.ts --timeout 10000 --exit --test --serial",
"test:integration": "npx ts-mocha --reporter mochawesome --reporter-options reportFilename=integrationReport -p tsconfig.json tests/integration/*.spec.ts --timeout 10000 --exit --test --serial",
"test": "pnpm test:unitary && pnpm test:functional && pnpm test:scenario && pnpm test:integration",
"swagger:generate": "ts-node src/libs/GenerateSwagger.ts"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/chai": "^4.3.11",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^20.14.11",
"@types/node-cron": "^3.0.11",
"@types/sinon": "^17.0.3",
"@types/supertest": "^6.0.2",
"@types/swagger-jsdoc": "^6.0.4",
"@types/swagger-ui-express": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"chai": "^4.3.10",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-no-floating-promise": "^2.0.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"globals": "^15.9.0",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"mongodb-memory-server": "^10.0.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sinon": "^18.0.0",
"supertest": "^7.0.0",
"ts-mocha": "^10.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.6.0"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"mongodb": "^6.8.0",
"mongoose": "^8.5.1",
"node-cron": "^3.0.3",
"stripe": "^16.10.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"winston": "^3.14.2",
"winston-daily-rotate-file": "^5.0.0"
}
}