-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.46 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
{
"name": "dirumahaja-challenge-rest-server",
"version": "1.0.0",
"description": "rest api made with node, express, and typescript",
"repository": "https://github.com/buahbatu/challenge-dirumahaja-web.git",
"main": "index.js",
"scripts": {
"serve": "nodemon",
"build": "sh ./scripts/deployment/build.sh",
"clean-install": "rm -rf node_modules package-lock.json && npm install",
"unit-test": "NODE_ENV=test nyc ava --verbose",
"lint": "eslint './src/**/*.{js,ts}' --fix",
"migrate": "./scripts/migration/migrate.sh",
"migrate:rollback": "./scripts/migration/rollback.sh",
"migrate:refresh": "./scripts/migration/refresh.sh",
"db:seed": "./scripts/migration/seed.sh"
},
"author": "archie isdiningrat",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/bull": "^3.12.1",
"@types/chai": "^4.1.7",
"@types/cors": "^2.8.5",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.0",
"@types/express-rate-limit": "^5.0.0",
"@types/hapi__joi": "^15.0.2",
"@types/helmet": "0.0.43",
"@types/jsonwebtoken": "^8.3.2",
"@types/node": "^12.0.10",
"@types/randomstring": "^1.1.6",
"@types/sequelize": "^4.28.3",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^1.13.0",
"@typescript-eslint/parser": "^1.13.0",
"ava": "^2.2.0",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"install": "^0.12.2",
"nodemon": "^1.19.1",
"npm": "^6.14.6",
"nyc": "^14.1.1",
"prettier": "^2.0.2",
"sequelize-cli": "^5.5.0",
"sinon": "^7.3.2",
"ts-node": "^8.3.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@hapi/joi": "^15.1.0",
"axios": "^0.21.2",
"bcryptjs": "^2.4.3",
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"bull": "^3.13.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"express-rate-limit": "^5.1.1",
"geolib": "^3.2.1",
"helmet": "^3.18.0",
"http-status-codes": "^1.3.2",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"randomstring": "^1.1.5",
"rate-limit-redis": "^1.7.0",
"sequelize": "^5.10.1",
"tymon": "git+https://github.com/archisdi/tymon.git",
"uuid": "^3.3.2"
},
"ava": {
"compileEnhancements": false,
"extensions": [
"ts"
],
"require": [
"ts-node/register/transpile-only"
],
"files": [
"./tests/**/*.test.ts"
]
}
}