-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.79 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
{
"name": "users-api-microservice",
"version": "1.0.0",
"description": "For https://www.ricardo.ch/",
"main": "index.js",
"scripts": {
"dev": "nodemon",
"dev-inspect": "nodemon --inspect src/index.js",
"build": "tsc",
"start": "node ./dist/src",
"lint": "eslint . --ext .ts",
"lint-fix": "eslint . --ext .ts --fix",
"test": "NODE_ENV=test mocha -r ts-node/register 'tests/**/*.ts' --exit"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint-fix",
"pre-push": "npm test"
}
},
"keywords": [],
"author": "Faisal Kanout",
"license": "ISC",
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/koa": "^2.11.6",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-helmet": "^6.0.1",
"@types/koa-logger": "^3.1.1",
"@types/koa-router": "^7.4.1",
"@types/koa__cors": "^3.0.2",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@types/redis": "^2.8.28",
"@types/request-ip": "0.0.35",
"@types/sqlite3": "^3.1.6",
"@types/supertest": "^2.0.10",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"chai": "^4.2.0",
"dotenv": "^8.2.0",
"eslint": "^7.15.0",
"husky": "^4.3.4",
"mocha": "^8.2.1",
"nodemon": "^2.0.6",
"sqlite3": "^5.0.0",
"supertest": "^6.0.1",
"ts-node": "^9.1.0",
"typescript": "^4.1.2"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"axios": "^0.21.0",
"bcrypt": "^5.0.0",
"knex": "^0.21.12",
"koa": "^2.13.0",
"koa-bodyparser": "^4.3.0",
"koa-helmet": "^6.0.0",
"koa-logger": "^3.2.1",
"koa-router": "^10.0.0",
"koa-router-joi-validation": "^1.2.2",
"pg": "^8.5.1",
"redis": "^3.0.2",
"request-ip": "^2.1.3",
"uuid": "^8.3.1"
}
}