-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 880 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 880 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
31
{
"name": "buckbuck.io",
"version": "0.5.0",
"description": "Library to create a backend for chat applications quickly.",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "tsc --watch & nodemon dist/index.js",
"build": "rm -rf ./dist/; tsc",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\"}' mocha -r ts-node/register 'tests/**/*.ts'"
},
"author": "Mihir Singh <mihirs16@gmail.com>",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"mongodb": "^5.3.0",
"socket.io": "^4.6.1"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/express": "^4.17.17",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.12",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}