-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1018 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1018 Bytes
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
{
"name": "codelabs",
"version": "1.0.0",
"description": "Repo for USP Codelabs Node.js + Typescript talk",
"author": "Rafael Melo",
"license": "MIT",
"scripts": {
"watch-server-koa": "nodemon --exec ts-node src/koa/server.ts",
"watch-server-express": "nodemon --exec ts-node src/express/server.ts"
},
"devDependencies": {
"@types/ejs": "^2.6.1",
"@types/express": "^4.16.1",
"@types/koa": "^2.0.48",
"@types/koa-bodyparser": "^4.2.1",
"@types/koa-router": "^7.0.39",
"@types/mongodb": "^3.1.19",
"@types/mongoose": "^5.3.10",
"@types/morgan": "^1.7.35",
"cross-env": "^5.2.0",
"nodemon": "^1.18.9",
"ts-lint": "^4.5.1",
"ts-node": "^8.0.1",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.2.4"
},
"dependencies": {
"body-parser": "^1.18.3",
"ejs": "^2.6.1",
"express": "^4.16.4",
"koa": "^2.6.2",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"mongoose": "^5.4.7",
"morgan": "^1.9.1"
}
}