-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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": "rs-chat-api",
"version": "1.0.1",
"description": "Api for RSSchool websocket task",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"test": "jest --clearCache && jest --runInBand --verbose --forceExit ./test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rolling-scopes-school/fun-chat-server.git"
},
"keywords": [
"rsschool",
"api",
"websocket"
],
"author": "MikAleinik",
"license": "MIT",
"bugs": {
"url": "https://github.com/rolling-scopes-school/fun-chat-server/issues"
},
"homepage": "https://github.com/rolling-scopes-school/fun-chat-server#readme",
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.3.1",
"uuid": "^9.0.0",
"ws": "^8.14.1"
},
"devDependencies": {
"eslint": "^8.51.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3"
}
}