-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 755 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 755 Bytes
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
{
"name": "chatterbox-server",
"version": "1.1.0",
"description": "Implement a chat server",
"author": "Hack Reactor <curriculum.team@hackreactor.com>",
"license": "UNLICENSED",
"private": true,
"engines": {
"node": ">=14.15.0"
},
"dependencies": {
"chai": "^4.2.0",
"jquery": "^3.5.1",
"mocha": "^5.2.0",
"sinon": "^6.3.5",
"underscore": "^1.13.6"
},
"scripts": {
"start:server": "node server/basic-server.js",
"start:client": "npx live-server",
"test": "mocha server/spec",
"lint": "eslint ./"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint-config-hackreactor": "https://github.com/reactorcore/eslint-config-hackreactor",
"mocha": "^8.2.1",
"request": "^2.88.2"
}
}