-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.2 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
{
"name": "loki-gm",
"version": "0.0.1",
"description": "Basic GroupMe bot for serverless functions deployment",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "eslint '{api,src}/**/*.{js,ts}'",
"now:dev": "now dev",
"compile": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JosephMart/loki-gm.git"
},
"author": "Joseph Martinsen",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/JosephMart/loki-gm/issues"
},
"homepage": "https://github.com/JosephMart/loki-gm#readme",
"dependencies": {
"@now/node": "^1.6.0",
"fp-ts": "^2.5.4",
"got": "^11.8.5",
"mongodb": "^3.5.7",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.2.0",
"typeorm": "^0.2.25"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@typescript-eslint/eslint-plugin": "^2.31.0",
"@typescript-eslint/parser": "^2.31.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"jest": "^25.5.4",
"now": "^19.0.0",
"prettier": "^2.0.5",
"ts-jest": "^25.5.0",
"typescript": "^3.8.3"
}
}