-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.8 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
{
"name": "turnip-api",
"author": "Wessel Kuipers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wesselkuipers/turnip-api.git"
},
"scripts": {
"start": "node ./dist/server.js",
"start:dev": "node --inspect=5858 -r ts-node/register ./src/server.ts",
"dev": "nodemon",
"build": "tsc",
"eslint": "eslint --max-warnings 0 --ext js,md,ts,tsx"
},
"cacheDirectories": [
"node_modules"
],
"nodemonConfig": {
"ignore": [
"**/*.test.ts",
"**/*.spec.ts",
".git",
"node_modules"
],
"watch": [
"src"
],
"exec": "yarn start:dev",
"ext": "ts"
},
"dependencies": {
"@sentry/node": "^5.13.2",
"ac-stalk-market-analyzer": "^1.0.1",
"date-fns": "^2.9.0",
"date-fns-tz": "^1.0.10",
"dotenv": "^8.2.0",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-mount": "^4.0.0",
"koa-router": "^8.0.8",
"pg": "^7.18.2",
"timezone-support": "^2.0.2",
"ts-node": "^8.6.2",
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/koa": "^2.11.1",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-logger": "^3.1.1",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.0",
"@types/node": "^13.7.4",
"@types/pg": "^7.14.1",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-simple-import-sort": "^5.0.1",
"nodemon": "^2.0.2",
"prettier": "^1.19.1"
}
}