-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.72 KB
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
{
"name": "discord-bot",
"description": "Discord bot written in TypeScript for Google App Engine.",
"version": "0.0.1",
"private": true,
"license": "Apache Version 2.0",
"author": "DodgeWhale",
"engines": {
"node": "14.x.x"
},
"scripts": {
"prepare": "npm run gcp-build",
"pretest": "npm run gcp-build",
"test": "mocha test/*.test.js --exit",
"posttest": "npm run lint",
"lint": "tslint -p .",
"watch": "webpack --mode=development --watch",
"build": "webpack --mode=development",
"start": "nodemon deploy/main.js",
"gcp-build": "webpack --mode=production",
"debug": "nodemon --inspect deploy/main.js",
"deploy": "gcloud app deploy"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime": "^7.14.0",
"@discordjs/opus": "^0.5.0",
"@types/express": "^4.17.11",
"@types/node": "^14.14.7",
"@types/node-cleanup": "^2.1.1",
"@types/pug": "^2.0.4",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cookie-parser": "^1.4.5",
"discord.js": "^12.5.3",
"dotenv": "^9.0.2",
"express": "^4.16.3",
"ffmpeg-static": "^4.3.0",
"jsonwebtoken": "^8.5.1",
"node-cleanup": "^2.1.2",
"nodemon": "^2.0.7",
"pug": "^3.0.2",
"typescript": "^4.0.0",
"webpack-node-externals": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-runtime": "^7.14.3",
"@babel/preset-env": "^7.14.2",
"@babel/preset-typescript": "^7.13.0",
"@types/cookie-parser": "^1.4.2",
"@types/jsonwebtoken": "^8.5.1",
"@types/ws": "^7.4.4",
"babel-loader": "^8.2.2",
"chai": "^4.2.0",
"mocha": "^8.0.0",
"ts-loader": "^9.2.1",
"ts-node": "^9.1.1",
"tslint": "^6.0.0",
"typescript": "^4.0.0",
"wait-port": "^0.2.7",
"webpack": "^5.37.1",
"webpack-cli": "^4.7.0"
}
}