-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "node-docker",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"dev": "ts-node-dev --respawn --transpileOnly ./src/index.ts",
"build": "tsc",
"tsc:watch": "tsc --watch",
"eslint": "eslint src/**/*.ts",
"eslint:fix": "eslint --fix src/**/*.ts"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^6.1.1",
"@types/jsonwebtoken": "^8.3.3",
"@types/koa": "^2.0.49",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-passport": "^4.0.2",
"@types/koa-router": "^7.0.42",
"@types/koa__cors": "^2.2.3",
"@types/mongoose": "^5.5.12",
"@types/passport": "^1.0.0",
"@types/passport-local": "^1.0.33",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"nodemon": "^1.19.1",
"prettier": "^1.18.2",
"ts-node-dev": "^1.0.0-pre.40",
"typescript": "^3.5.3"
},
"dependencies": {
"@koa/cors": "^2.2.3",
"bcryptjs": "^2.4.3",
"dotenv": "^8.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-logger": "^3.2.1",
"koa-passport": "^4.1.3",
"koa-router": "^7.4.0",
"mongoose": "^5.6.8",
"passport": "^0.4.0",
"passport-local": "^1.0.0"
}
}