-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 926 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
{
"name": "cypress-workshop-socketio-chat",
"version": "1.0.0",
"description": "Testing Socketio chat app using Cypres.io",
"private": true,
"main": "index.js",
"scripts": {
"start": "node .",
"cy:open": "cypress open",
"cy:run": "cypress run",
"dev": "start-server-and-test 8080 cy:open"
},
"dependencies": {
"ejs": "3.1.6",
"express": "^4.16.4",
"socket.io": "4.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bahmutov/cypress-workshop-socketio-chat.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/bahmutov/cypress-workshop-socketio-chat/issues"
},
"homepage": "https://github.com/bahmutov/cypress-workshop-socketio-chat#readme",
"devDependencies": {
"cypress": "^7.5.0",
"prettier": "^2.3.1",
"socket.io-client": "^4.1.2",
"start-server-and-test": "^1.12.5"
}
}