-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 962 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": "ws-anywhere",
"version": "1.0.0",
"description": "Customizable WebSocket test server",
"main": "index.js",
"scripts": {
"start": "node app.js",
"dev": "nodemon app.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/c-hive/ws-anywhere.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/c-hive/ws-anywhere/issues"
},
"homepage": "https://github.com/c-hive/ws-anywhere#readme",
"dependencies": {
"body-parser": "^1.19.0",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"express-ws": "^4.0.0",
"mongoose": ">=5.7.5"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-prettier": "^3.0.1",
"nodemon": "^1.18.11",
"pre-commit": "^1.2.2",
"prettier": "^1.17.0"
},
"pre-commit": [
"lint"
]
}