-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 4.62 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "valbot",
"version": "0.1.0",
"engines": {
"node": "12.x"
},
"description": "A chat bot supporting multiple interfaces, including Slack and Alexa",
"main": "server.js",
"scripts": {
"app:serve": "cd app/ && npm run ionic:serve",
"build": "npm run build:clean && npm run build:copy && npm run build:compile",
"build:clean": "rm -rf dist/*",
"build:compile": "tsc",
"build:copy": "cp -a thirdParty dist/ && cp *.json dist/",
"dev": "concurrently --kill-others 'npm run watch:typescript' 'npm run watch:node'",
"docker": "npm run build && docker build -t servercobra/val . && docker push servercobra/val",
"install:service": "cp val.service /lib/systemd/system/val.service && systemctl daemon-reload && systemctl start val",
"precommit": "prettier --print-width 100 --trailing-comma 'all' --write '**/*.ts'",
"start": "node dist/server.js",
"test": "npm run test:lint && npm run build && npm run test:mocha",
"test:lint": "node node_modules/prettier/bin/prettier.js --list-different \"**/*.ts\"",
"test:mocha": "mocha --timeout 200 --exit dist/test/*.js",
"watch:files": "cpx '*.json' dist --watch",
"watch:node": "nodemon dist/server.js",
"watch:typescript": "tsc -w"
},
"author": "Josh Gachnang",
"license": "GPL-3.0",
"dependencies": {
"@google-cloud/firestore": "1.2.0",
"@octokit/rest": "15.4.0",
"alexa-app": "4.2.2",
"better-require": "0.0.3",
"body-parser": "1.18.2",
"bson-objectid": "^1.2.3",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.2",
"cline": "^0.8.2",
"coffee-script": "1.12.7",
"cors": "2.8.4",
"cron": "1.3.0",
"dotenv": "4.0.0",
"express": "4.16.2",
"fb-messenger": "^2.3.1",
"firebase-admin": "7.2.0",
"github": "13.0.1",
"google-auth-library": "0.12.0",
"googleapis": "23.0.0",
"hubot-scripts": "2.17.2",
"hubot-shipit": "0.2.1",
"js-combinatorics": "0.5.3",
"lodash": "4.17.11",
"moment-timezone": "0.5.14",
"node-gyp": "3.6.2",
"node-rescuetime": "0.1.1",
"numbered": "1.1.0",
"parse5": "4.0.0",
"pluralize": "7.0.0",
"q": "1.5.1",
"raven": "2.3.0",
"request": "2.83.0",
"request-promise": "4.2.2",
"request-promise-native": "1.0.5",
"scoped-http-client": "0.11.0",
"source-map-support": "0.5.0",
"stream": "^0.0.2",
"twilio": "^3.19.1",
"twitter": "1.7.1",
"winston": "2.4.0",
"ws": "3.3.3",
"xml2js-promise": "0.0.2",
"xregexp": "4.1.1"
},
"devDependencies": {
"@types/body-parser": "1.16.8",
"@types/express": "^4.16.1",
"@types/lodash": "ts2.0",
"@types/moment": "2.13.0",
"@types/moment-timezone": "0.5.2",
"@types/mongodb": "2.2.18",
"@types/mongoose": "4.7.30",
"@types/node": "8.5.2",
"@types/request": "^2.47.0",
"@types/supertest": "2.0.4",
"@types/winston": "2.3.7",
"@typescript-eslint/eslint-plugin": "^1.6.0",
"@typescript-eslint/parser": "^1.6.0",
"babel-cli": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-es2015": "6.24.1",
"babelify": "8.0.0",
"chai": "4.1.2",
"concurrently": "3.5.1",
"cpx": "^1.5.0",
"csscomb": "4.2.0",
"debowerify": "1.5.0",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"mocha": "4.0.1",
"mocha-typescript": "1.1.12",
"nodemon": "1.18.3",
"prettier": "^1.9.2",
"rimraf": "2.6.2",
"supertest": "3.0.0",
"ts-node": "4.0.2",
"typescript": "^3.4.2",
"typescript-eslint-parser": "11.0.0",
"watchify": "3.9.0"
},
"babel": {
"presets": [
"es2016"
]
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"extends": [
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
],
"ecmaFeatures": {
"jsx": true
},
"parserOptions": {
"ecmaVersion": 2018,
"sourceType": "module"
},
"settings": {
"react": {
"version": "16.6"
}
},
"rules": {
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/interface-name-prefix": "off"
}
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": false,
"printWidth": 100,
"semi": true,
"singleQuote": false,
"trailingComma": "es5",
"useTabs": false
},
"nodemonConfig": {
"ext": "js,json"
},
"resolutions": {
"grpc": "1.24.1"
}
}