forked from darkwire/darkwire.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.34 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
48
49
50
51
52
53
54
55
56
{
"name": "darkwire-server",
"version": "2.0.0-beta.8",
"main": "index.js",
"license": "MIT",
"contributors": [
{
"name": "Daniel Seripap"
},
{
"name": "Alan Friedman"
}
],
"dependencies": {
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/runtime": "^7.9.6",
"bluebird": "^3.5.1",
"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.20",
"mailgun-js": "^0.22.0",
"moment": "^2.18.1",
"redis": "^2.8.0",
"socket.io": "^2.0.3",
"socket.io-redis": "^5.2.0",
"uuid": "^3.3.2"
},
"scripts": {
"build": "./build.sh",
"dev": "nodemon src/index.js --exec babel-node",
"test": "jest",
"test:watch": "jest --watch",
"start": "node dist/src/index.js",
"lint": "eslint src"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-async-to-generator": "^7.8.3",
"@babel/preset-env": "^7.9.6",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^26.0.0",
"nodemon": "^2.0.3",
"prettier": "^2.0.5"
}
}