-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "tarchivebot",
"version": "1.0.0",
"description": "A Telegram bot that logs your chat and provides you with a key to look up statistics",
"main": "app.js",
"scripts": {
"bot": "node app.js --bot",
"postinstall": "grunt uglify",
"setup": "sh setup.sh",
"start": "grunt & node app.js",
"test": "standard",
"webserver": "node app.js --webserver"
},
"standard": {
"globals": [
"angular",
"swal",
"localStorage",
"bot"
]
},
"dependencies": {
"angular": "~1.6.5",
"angular-sanitize": "~1.6.5",
"body-parser": "^1.17.1",
"bootstrap": "~3.3.7",
"express": "^4.13.3",
"jquery": "~3.2.1",
"jsonfile": "^2.4.0",
"ng-table": "~3.0.1",
"node-sass": "~4.5.2",
"node-sass-middleware": "^0.11.0",
"node-telegram-bot-api": "^0.27.0",
"pug": "^2.0.0-alpha6",
"sqlite3": "^3.1.8",
"sweetalert": "~1.1.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fuerbringer/Tarchivebot.git"
},
"author": "Severin Fürbringer",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/fuerbringer/Tarchivebot/issues"
},
"homepage": "https://github.com/fuerbringer/Tarchivebot#readme",
"devDependencies": {
"grunt": "^1.0.1",
"grunt-contrib-cssmin": "^2.2.1",
"grunt-contrib-uglify": "^3.0.1",
"grunt-contrib-watch": "^1.0.0",
"grunt-run": "^0.7.0"
}
}