-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
{
"name": "websockets-chat",
"version": "1.0.0",
"description": "Exploring websockets by building a basic chat application.",
"main": "index.js",
"scripts": {
"start": "npm run generate-defines && node server/index",
"generate-defines": "node scripts/create-client-defines",
"lint-fix": "eslint --fix server scripts public/js",
"lint": "eslint server scripts public/js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weaponsforge/websockets-chat.git"
},
"keywords": [
"websockets",
"nodejs",
"express",
"chat"
],
"author": "weaponsforge",
"license": "ISC",
"bugs": {
"url": "https://github.com/weaponsforge/websockets-chat/issues"
},
"homepage": "https://github.com/weaponsforge/websockets-chat#readme",
"dependencies": {
"dotenv": "^8.2.0",
"express": "^4.17.1",
"ws": "^7.4.6"
},
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1"
}
}