-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.97 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.97 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
66
67
68
69
{
"name": "numberlinesupervisor",
"version": "1.0.0",
"description": "Number Line supervisor",
"main": "bot.js",
"scripts": {
"lint:gulp": "gulp lint",
"build:gulp": "gulp build",
"watch:gulp": "gulp watch",
"debug:gulp": "gulp debug",
"start:gulp": "gulp start",
"deploy:gulp": "gulp deploy",
"debug": "npm run debug:gulp -s",
"watch": "npm run watch:gulp -s",
"lint": "npm run lint:gulp -s",
"build": "npm run build:gulp -s",
"start": "npm run start:gulp -s",
"deploy": "npm run deploy:gulp -s",
"test": "mocha -r ts-node/register src/**/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LoudSoftware/DiscordCountingSupervisorBot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LoudSoftware/DiscordCountingSupervisorBot/issues"
},
"homepage": "https://github.com/LoudSoftware/DiscordCountingSupervisorBot#readme",
"dependencies": {
"@types/winston": "^2.3.9",
"del": "^3.0.0",
"discord.js": "^11.3.2",
"discord.js-commando": "^0.10.0",
"dotenv": "^5.0.1",
"nodemon": "^1.17.3",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"reflect-metadata": "^0.1.12",
"sequelize": "^4.37.6",
"sequelize-typescript": "^0.6.4",
"sqlite3": "^4.0.0",
"typescript-eslint-parser": "^15.0.0",
"winston": "^2.4.2"
},
"devDependencies": {
"@types/chai": "^4.1.3",
"@types/dotenv": "^4.0.3",
"@types/mocha": "^5.2.0",
"@types/node": "^6.0.107",
"@types/sequelize": "^4.27.17",
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^4.0.2",
"mocha": "^5.1.1",
"nodemon": "^1.17.3",
"ts-node": "^6.0.2",
"tsc": "^1.20150623.0",
"tslint": "^5.9.1",
"tslint-eslint-rules": "^5.1.0",
"typescript": "^2.8.3",
"typescript-eslint-parser": "^15.0.0"
}
}