-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.94 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
{
"name": "sos2324-11",
"version": "0.0.0",
"description": "Paquete de node",
"main": "index.js",
"scripts": {
"start": "node index",
"pretest": "npm start &",
"test-structural-investment-integration": "npx newman run ./tests/integration/structural-investment-API-v2.json -e ./tests/integration/environments/gcloud.json",
"test-structural-payment-data-integration": "npx newman run ./tests/integration/structural-payment-data-v2.json -e ./tests/integration/environments/gcloud.json",
"test-socioeconomics-tracker-using-unconventional-data-integration": "npx newman run ./tests/integration/socioeconomics-tracker-using-unconventional-data-API-v2.json -e ./tests/integration/environments/gcloud.json",
"test-structural-payment-data-e2e": "npx playwright test /structural-payment-data.spec.cjs",
"test-socioeconomics-tracker-using-unconventional-data-e2e": "npx playwright test /socioeconomics-tracker-using-unconventional-data.spec.cjs",
"test-structural-investment-e2e": "npx playwright test /structural-investment.spec.cjs",
"test-integration": "npm run test-structural-investment-integration && npm run test-structural-payment-data-integration && npm run test-socioeconomics-tracker-using-unconventional-data-integration",
"test-e2e": "npx playwright test",
"test": "npm run test-integration && npm run test-e2e",
"posttest": "kill `ps -uax | grep \"node index\" | grep -v \"grep\" | grep -v \"sh\" | awk '{print $2}'`"
},
"author": "sharay",
"license": "GPL-3.0",
"dependencies": {
"axios": "^1.6.8",
"body-parser": "^1.20.2",
"chart.js": "^3.0.0",
"cool-ascii-faces": "^1.3.4",
"cors": "^2.8.5",
"express": "^4.18.2",
"handler": "^0.1.3",
"nedb": "^1.8.0",
"newman": "^6.1.1",
"plotly.js-dist": "^2.32.0",
"request": "^2.88.2",
"sveltestrap": "^5.11.3"
},
"type": "module",
"devDependencies": {
"@playwright/test": "^1.43.0",
"@types/node": "^20.12.5"
}
}