-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.83 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
56
57
58
59
60
61
{
"name": "spotdetector",
"version": "1.0.0",
"description": "Spot Detector — a bot designed to seek out and provide feedback about potentially bad reviews",
"main": "index.js",
"type": "module",
"scripts": {
"build": "rimraf dist/ && tsc",
"dev": "node --loader ts-node/esm src/index.ts",
"start": "node dist/index.js",
"deploy": "gcloud app deploy",
"typecheck": "tsc --noEmit",
"test": "npm run typecheck && mocha"
},
"author": {
"name": "Daniel Beaupre",
"url": "https://github.com/danbopes"
},
"contributors": [
{
"name": "Oleg Valter",
"url": "https://stackoverflow.com/users/11407695"
},
{
"name": "Samuel Liew",
"url": "https://so-user.com/584192?tab=profile"
}
],
"license": "GPL-3.0-only",
"dependencies": {
"chatexchange": "^0.7.5",
"dotenv": "^16.3.1",
"jsdom": "^19.0.0",
"lodash": "^4.17.21",
"node-cron": "^3.0.2",
"request": "^2.88.0",
"request-promise-native": "^1.0.5",
"sql-template-strings": "^2.2.2",
"sqlite": "^4.2.1",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/jsdom": "^16.2.15",
"@types/lodash": "^4.14.197",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.45",
"@types/node-cron": "^3.0.8",
"@types/request-promise-native": "^1.0.18",
"@types/sinon": "^10.0.16",
"@userscripters/stackexchange-api-types": "^3.4.0",
"chai": "^4.3.8",
"chai-as-promised": "^7.1.1",
"mocha": "^9.2.2",
"rimraf": "^3.0.2",
"sinon": "^13.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.6.2",
"typescript": "^4.9.5"
}
}