-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 2.44 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
{
"name": "beckn-action-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"test": "NODE_ENV=test mocha tests --recursive --timeout 900000 -r dotenv/config --exit",
"test:unit": "NODE_ENV=test mocha tests/unit tests/utils --recursive --timeout 300000 -r dotenv/config --exit",
"test:apis": "NODE_ENV=test mocha tests/apis --recursive --timeout 300000 -r dotenv/config --exit",
"start": "nodemon --env-file=.env server.js",
"dev": "NODE_ENV=dev && npm start",
"prod": "NODE_ENV=prod && npm start",
"prettify": "prettier --write .",
"lint": "eslint -c .eslintrc.json .",
"docker:dev": "docker-compose down && docker-compose run --rm beckn-action-bot sh -c 'npm run dev'",
"docker:lint": "docker-compose down && docker-compose run --rm beckn-action-bot sh -c 'npm run lint'",
"docker:test": "docker-compose down && docker-compose run --rm beckn-action-bot sh -c 'npm run test'",
"docker:test:unit": "docker-compose down && docker-compose run --rm beckn-action-bot sh -c 'npm run test:unit'",
"docker:test:apis": "docker-compose down && docker-compose run --rm beckn-action-bot sh -c 'npm run test:apis'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@googlemaps/google-maps-services-js": "^3.3.42",
"@mapbox/polyline": "^1.2.1",
"axios": "^1.6.7",
"body-parser": "^1.20.2",
"chai": "^5.0.0",
"config": "^3.3.11",
"core-js": "^3.36.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"mocha": "^10.2.0",
"natural": "^6.10.4",
"nodemon": "^3.0.3",
"openai": "^4.24.1",
"pdf-parse": "^1.1.1",
"redis": "^4.6.13",
"supertest": "^6.3.4",
"twilio": "^5.0.1",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.0.11",
"prettier": "^3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint — fix",
"prettier — write",
"git add"
]
}
}