-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 916 Bytes
/
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
{
"name": "cypress-typescript-api-testing",
"version": "1.0.0",
"description": "API testing using cypress.io",
"scripts": {
"open": "cypress open --e2e --browser electron",
"test": "cypress run --e2e",
"pretty": "prettier --write \"./**/*.{yml,ts,tsx,json}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/burakkaygusuz/cypress-typescript-api-testing.git"
},
"keywords": [
"cypress",
"api-testing",
"typescript"
],
"author": "Burak Kaygusuz",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.19.0",
"@faker-js/faker": "^9.4.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.10.10",
"cypress": "^14.0.0",
"eslint": "^9.19.0",
"eslint-plugin-chai-friendly": "^1.0.1",
"eslint-plugin-cypress": "^4.1.0",
"prettier": "3.4.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
}
}