-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.51 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
{
"name": "expensa-template",
"version": "0.0.1",
"description": "Expensa Backend Template Micro Service",
"readmeFilename": "README.md",
"author": {
"name": "eJobu, Inc.",
"email": "dev@expensa.io"
},
"scripts": {
"build": "tsc --removeComments",
"local": "bash scripts/run_local.sh",
"tests": "bash scripts/run_tests.sh",
"test": "npm run lint; nyc npm run tests",
"dev": "nodemon --exec npm run local",
"test-local": "heroku local:run -e env bash ./scripts/test_local.sh",
"ci-lint": "eslint ./src --ext .ts,.js --quiet",
"test-heroku-ci": "bash scripts/run_heroku_ci_suite.sh",
"test:ci": "nyc mocha -r ts-node/register -r tsconfig-paths/register './src/**/*.spec.{js,ts}' --exit --timeout 60000 --retries 2",
"start": "NODE_PATH=build node --inspect build/index.js",
"lint": "tsc --pretty --noEmit && node_modules/.bin/eslint ./src --fix --ext .ts,.js --quiet",
"migrations:run": "NODE_PATH=src ts-node ./node_modules/typeorm/cli.js migration:run -f=src/models/ormconfig",
"migrations:generate": "NODE_PATH=src ts-node ./node_modules/typeorm/cli.js --config src/models/ormconfig migration:generate -n",
"prepare": "husky install; npm install -D @trunkio/launcher"
},
"dependencies": {
"axios": "0.28.1",
"dotenv": "8.6.0",
"http-status-codes": "2.3.0",
"jsonwebtoken": "8.5.1",
"koa": "2.15.3",
"koa-bodyparser": "4.4.1",
"koa-cors": "0.0.16",
"koa-json": "2.0.2",
"koa-logger": "3.2.1",
"koa-router": "10.1.1",
"pg": "8.13.1",
"typeorm": "0.2.29",
"uuid": "3.4.0",
"winston": "3.16.0"
},
"devDependencies": {
"@trunkio/launcher": "1.3.2",
"@types/chai": "4.3.20",
"@types/chai-as-promised": "7.1.8",
"@types/jsonwebtoken": "8.5.9",
"@types/koa": "2.15.0",
"@types/koa-bodyparser": "4.3.12",
"@types/koa-cors": "0.0.6",
"@types/koa-json": "2.0.23",
"@types/koa-logger": "3.1.5",
"@types/koa-router": "7.4.8",
"@types/mocha": "8.2.3",
"@types/node": "14.18.63",
"@types/node-fetch": "2.6.11",
"@types/uuid": "8.3.4",
"@typescript-eslint/eslint-plugin": "4.33.0",
"@typescript-eslint/parser": "4.33.0",
"chai": "4.5.0",
"chai-as-promised": "7.1.2",
"eslint": "7.32.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-mocha": "8.2.0",
"eslint-plugin-n": "14.0.0",
"eslint-plugin-promise": "4.3.1",
"husky": "8.0.3",
"mocha": "9.2.2",
"nyc": "15.1.0",
"typescript": "5.0.2"
}
}