forked from Lichess4545/Chesster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.44 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "chesster",
"version": "1.0.3",
"description": "Bot for Lichess4545 Slack group",
"main": "chesster.js",
"directories": {
"test": "test"
},
"dependencies": {
"@slack/rtm-api": "^5.0.3",
"@slack/web-api": "^5.8.0",
"@types/fast-levenshtein": "^0.0.1",
"async": "^3.2.2",
"chai": "^4.2.0",
"codeclimate-test-reporter": "^0.5.1",
"dotenv": "^8.2.0",
"ee-ts": "^1.0.1",
"fast-levenshtein": "2.0.6",
"istanbul": "^0.4.3",
"lodash": "^4.17.19",
"logform": "^2.1.2",
"moment": "^2.29.4",
"moment-timezone": "^0.5.35",
"pg": "^7.8.2",
"pg-hstore": "^2.3.3",
"q": "^1.5.1",
"sequelize": "^5.21.5",
"sequelize-cli": "5.5.0",
"triple-beam": "^1.3.0",
"tslint": "^6.1.1",
"type-safe-json-decoder": "^0.2.0",
"utility-types": "^3.10.0",
"winston": "^3.2.1",
"winston-transport": "^4.3.0"
},
"resolutions": {
"graceful-fs": "4.2.3"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/bluebird": "^3.5.30",
"@types/chai": "^4.2.10",
"@types/lodash": "^4.14.149",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.0",
"@types/q": "^1.5.2",
"@types/triple-beam": "^1.3.0",
"@types/validator": "^12.0.1",
"fp-ts": "^2.5.3",
"mocha": "^7.1.0",
"monocle-ts": "^2.1.0",
"newtype-ts": "^0.3.4",
"nyc": "^15.1.0",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"scripts": {
"build": "node_modules/typescript/bin/tsc",
"start": "node_modules/typescript/bin/tsc && node build/chesster.js ../config/testconfig",
"test": "node node_modules/nyc/bin/nyc.js --reporter=lcov node_modules/mocha/bin/mocha",
"lint": "node_modules/tslint/bin/tslint -c tslint.json 'src/**/*.ts'",
"migrate": "node_modules/typescript/bin/tsc && node_modules/sequelize-cli/lib/sequelize db:migrate --config config/testconfig.js"
},
"nyc": {
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"extension": [
".ts",
".tsx"
],
"require": [
"ts-node/register"
],
"reporter": [
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Lichess4545/Chesster.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Lichess4545/Chesster/issues"
},
"homepage": "https://github.com/Lichess4545/Chesster"
}