-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.49 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
{
"name": "nodejs.starter",
"version": "0.0.1",
"description": "Node.js starter boilerplate",
"scripts": {
"build": "tsc",
"start": "NODE_ENV=production node dist/src/index",
"dev": "NODE_ENV=development nodemon src/index.ts",
"prepare": "husky install",
"lint": "eslint '*/**/*.{js,ts,tsx}'",
"lint:fix": "prettier-eslint '*/**/*.{js,ts,tsx}' --write",
"test": "jest --detectOpenHandles",
"test:watch": "jest --watchAll --detectOpenHandles --coverage",
"debug": "ndb NODE_ENV=development ts-node src/index.ts",
"seed:import": "NODE_ENV=development ts-node src/seeds/index.ts --import",
"seed:delete": "NODE_ENV=development ts-node src/seeds/index.ts --delete",
"validate": "yarn lint && yarn test",
"migrate:up": "migrate-mongo up",
"migrate:down": "migrate-mongo down"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yatri-motorcycles/wallet.git"
},
"author": "",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/yatri-motorcycles/wallet/issues"
},
"homepage": "https://github.com/yatri-motorcycles/wallet#readme",
"dependencies": {
"@honeybadger-io/js": "^3.2.2",
"axios": "^0.27.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-mongo-sanitize": "^2.1.0",
"express-rate-limit": "^5.3.0",
"helmet": "^4.6.0",
"http-status-codes": "^2.1.4",
"husky": "^8.0.2",
"joi": "^17.4.1",
"lodash": "^4.17.21",
"moment-timezone": "^0.5.34",
"mongoose": "^5.13.5",
"morgan": "^1.10.0",
"short-uuid": "^4.2.0",
"winston": "^3.3.3",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"@types/compression": "^1.7.1",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.24",
"@types/lodash": "^4.14.171",
"@types/morgan": "^1.9.3",
"@types/node": "^16.4.10",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-prettier": "^3.1.4",
"jest": "^26.4.2",
"ndb": "^1.1.5",
"nodemon": "^2.0.12",
"prettier": "^2.3.2",
"prettier-eslint-cli": "^5.0.1",
"supertest": "^6.1.4",
"ts-jest": "^26.4.0",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
}
}