-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.18 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
{
"name": "yodel",
"version": "1.0.0",
"description": "Gamekeller TeamSpeak bridge/bot",
"main": "index.js",
"author": "Heinrich Fenkart <[email protected]>",
"repository": "gamekeller/yodel",
"license": "MIT",
"scripts": {
"build-dir": "rm -r build; mkdir build",
"build": "npm run build-dir && npx babel index.js -o build/index.js && npx babel lib -d build/lib && npx babel modules -d build/modules",
"dev": "DEBUG=yodel:* npx nodemon --exec \"npx babel-node\" index.js"
},
"dependencies": {
"@pm2/io": "^4.1.4",
"bluebird": "^3.5.4",
"bull": "^3.7.0",
"cwd": "^0.10.0",
"debug": "^4.1.1",
"ioredis": "^4.9.0",
"lodash": "^4.17.11",
"node-teamspeak": "^1.0.10"
},
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/preset-env": "^7.4.3",
"nodemon": "^1.18.11"
},
"babel": {
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-function-bind"
]
}
}