This repository has been archived by the owner on Apr 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "vgpro.gg",
"version": "0.0.1",
"description": "Drifting Dark",
"author": "Pierre Ortega",
"main": "dist/index.js",
"scripts": {
"prestart": "npm run build",
"start": "node -r dotenv/config dist/index.js",
"dev": "nodemon src/index.js --exec \"node --inspect -r dotenv/config -r babel-register\" --trace-warnings ",
"clean": "rimraf dist",
"build": "npm run clean && mkdir -p dist && babel src -s -D -d dist",
"benchmark": "npm run build && node __benchmark__/merge.js",
"precommit": "lint-staged"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"keywords": [],
"dependencies": {
"bluebird": "^3.5.1",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"connect-datadog": "0.0.6",
"cors": "^2.8.4",
"couchbase": "^2.4.6",
"dd-trace": "^0.2.1",
"express": "^4.16.3",
"helmet": "^3.12.1",
"ioredis": "^3.2.2",
"kue": "^0.11.6",
"lodash": "^4.17.10",
"mathjs": "^3.20.2",
"moment": "^2.22.2",
"morgan": "^1.9.0",
"node-cron": "^1.2.1",
"node-dogstatsd": "0.0.7",
"node-fetch": "^1.7.3",
"vainglory": "git://github.com/PierreAndreis/vainglory.git#3.4",
"winston": "^3.0.0-rc6"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-root-import": "^5.1.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"benchmark": "^2.1.4",
"dotenv": "^4.0.0",
"nodemon": "^1.17.5",
"rimraf": "^2.6.2"
},
"babel": {
"presets": [
[
"env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
[
"babel-plugin-root-import",
{
"rootPathSuffix": "src/",
"rootPathPrefix": "~"
}
],
[
"transform-object-rest-spread",
{
"useBuiltIns": true
}
]
]
}
}