-
Notifications
You must be signed in to change notification settings - Fork 145
/
package.json
47 lines (47 loc) · 1.07 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
42
43
44
45
46
47
{
"name": "darkwire-server",
"version": "2.0.0-beta.8",
"main": "index.js",
"license": "MIT",
"type": "module",
"module": "src/index.js",
"contributors": [
{
"name": "Daniel Seripap"
},
{
"name": "Alan Friedman"
}
],
"dependencies": {
"dotenv": "^8.0.0",
"kcors": "^2.2.2",
"koa": "^2.3.0",
"koa-body": "^2.3.0",
"koa-router": "^7.2.1",
"koa-send": "^5.0.0",
"koa-static": "^5.0.0",
"lodash": "^4.17.21",
"mailgun-js": "^0.22.0",
"moment": "^2.18.1",
"redis": "^4.5.1",
"socket.io": "^4.5.4",
"socket.io-redis": "^6.1.1"
},
"scripts": {
"build": "echo 'Nothing to build here.'",
"dev": "nodemon src/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"test:watch": "yarn test --watch",
"start": "node src/index.js",
"lint": "eslint src"
},
"devDependencies": {
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"nodemon": "^2.0.20",
"prettier": "^2.8.1"
}
}