forked from cypress-io/cypress-mock-ssr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 943 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
35
36
37
38
39
40
41
{
"name": "@cypress/mock-ssr",
"version": "0.0.1",
"description": "Cypress Mock SSR",
"license": "MIT",
"repository": "cypress-io/cypress-mock-ssr",
"author": {
"name": "Cypress DX Team",
"email": "[email protected]",
"url": "https://cypress.io"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/*.ts'",
"build": "tsc"
},
"keywords": [
"cypress",
"mock",
"ssr"
],
"dependencies": {
"connect": "^3.7.0",
"nock": "^13.1.3"
},
"devDependencies": {
"@types/connect": "^3.4.35",
"@types/cypress": "^1.1.3",
"@types/mocha": "^10.0.1",
"@types/supertest": "^2.0.12",
"chai": "^4.3.4",
"eslint-plugin-cypress": "^2.12.1",
"mocha": "^9.2.2",
"prettier": "^2.4.0",
"supertest": "^6.1.6",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
}
}