-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.31 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
{
"name": "appiteto",
"version": "1.0.0",
"description": "AppiTeTo-Api Testing Tool",
"main": "index.js",
"scripts": {
"mocha": "npx ts-node src/scripts/run/script.ts",
"test:petstore:prod": "env=PROD app=PETSTORE mocha -r ts-node/register -r tsconfig-paths/register tests/integration/**/**.spec.ts --grep @petstore --reporter mochawesome --exit",
"lint": "eslint ."
},
"lint-staged": {
"*.{ts}": "eslint --fix"
},
"author": "Nebojsa Ilic",
"license": "ISC",
"dependencies": {
"chai": "^4.3.6",
"dotenv": "^16.0.1",
"http-status-codes": "^2.2.0",
"soap": "^0.45.0",
"superagent": "^8.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.14",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"mocha": "^10.0.0",
"mochawesome": "^7.1.3",
"prettier": "^2.7.1",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.2"
}
}