This repository has been archived by the owner on Nov 18, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
87 lines (87 loc) · 2.16 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
{
"name": "teacherfund_api",
"version": "1.0.0",
"description": "the teacherfund api",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "concurrently \"tsc -w\" \"nodemon dist | pino-pretty -c\"",
"start": "node dist/index.js",
"eb": "tsc && eb deploy",
"lint": "eslint src/**/*.ts --fix",
"test": "nyc ava"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"nyc": {
"extension": [
".ts"
]
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/teacherfund/api.git"
},
"author": "Peter Squicciarini <stripedpajamas273@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/teacherfund/api/issues"
},
"homepage": "https://github.com/teacherfund/api#readme",
"devDependencies": {
"@types/koa": "^2.0.47",
"@types/koa-bodyparser": "^4.2.1",
"@types/koa-helmet": "^3.1.2",
"@types/koa-pino-logger": "^2.1.2",
"@types/koa-router": "^7.0.35",
"@types/koa-sslify": "^2.1.0",
"@types/node": "^10.12.18",
"@types/sinon": "^7.0.3",
"ava": "^1.0.1",
"concurrently": "^4.1.0",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-node": "^0.3.2",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-typescript": "^0.14.0",
"husky": "^1.3.0",
"nodemon": "^1.18.9",
"nyc": "^14.0.0",
"pino-pretty": "^2.5.0",
"sinon": "^7.2.2",
"ts-node": "^7.0.1",
"typescript": "~3.1.1",
"typescript-eslint-parser": "^21.0.2"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"aws-sdk": "^2.418.0",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-helmet": "^4.0.0",
"koa-logger": "^3.2.0",
"koa-router": "^7.4.0",
"koa-sslify": "^2.2.0",
"mysql2": "^1.6.5",
"sequelize": "^5.3.0",
"sodium-native": "^2.2.3",
"stripe": "^6.23.1"
}
}