-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.43 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
{
"name": "merit-discord-bot",
"version": "0.0.1",
"description": "Discord bot for community size parsing",
"main": "index.js",
"scripts": {
"start": "npm run prepare && npm run gulp:build && npm run run:server",
"start:dev": "npm-run-all --parallel gulp:watch run:server",
"test": "echo \"Error: no test specified\" && exit 1",
"run:server": "node ./dist/server/server.js",
"gulp:build": "./node_modules/.bin/gulp compileTS && ./node_modules/.bin/gulp sass && ./node_modules/.bin/gulp html && ./node_modules/.bin/gulp cpImages",
"gulp:watch": "./node_modules/.bin/gulp watch",
"prepare": "cp src/common/env/example.ts src/common/env/dev.ts && npm run gulp:build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/meritlabs/discord-bot.git"
},
"keywords": ["discord", "merit"],
"author": "Vladimir Gutorov",
"license": "ISC",
"bugs": {
"url": "https://github.com/meritlabs/discord-bot/issues"
},
"homepage": "https://github.com/meritlabs/discord-bot#readme",
"dependencies": {
"@types/express": "^4.11.1",
"@types/ws": "^5.1.1",
"bad-words": "^1.6.1",
"discord.js": "^11.3.2",
"express": "^4.16.3",
"gulp-html": "^0.5.0",
"gulp-htmlmin": "^4.0.0",
"http": "0.0.0",
"typescript": "^2.9.1",
"ws": "^5.2.0"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-sass": "^4.0.1",
"gulp-shell": "^0.6.5",
"npm-run-all": "^4.1.3"
}
}