-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 KB
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
{
"name": "user-api",
"version": "0.0.1",
"description": "Rest api for users to update which teams they would like in their calendar",
"main": "index.ts",
"scripts": {
"build": "tsc",
"dev": "ts-node -r dotenv/config index.ts | npx bunyan",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vcalendars/user-api.git"
},
"author": "Daniel Emery <danielremery@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/vcalendars/user-api/issues"
},
"homepage": "https://github.com/vcalendars/user-api#readme",
"devDependencies": {
"@danielemeryau/prettier-config": "0.0.6",
"@types/koa": "^2.11.0",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa__cors": "^3.0.1",
"@types/koa__router": "^8.0.2",
"@types/node": "^13.7.0",
"@types/uuid": "^3.4.7",
"dotenv": "^8.2.0",
"knex": "^0.20.8",
"mysql2": "^2.1.0",
"ts-node": "^8.6.2",
"typescript": "^3.7.5"
},
"dependencies": {
"@danielemeryau/logger": "0.1.1",
"@koa/cors": "^2.2.3",
"@koa/router": "^8.0.7",
"@vcalendars/models": "^0.3.1-namespaces.4",
"google-auth-library": "^5.9.2",
"koa": "^2.11.0",
"koa-bodyparser": "^4.2.1",
"uuid": "^3.4.0"
}
}