-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.64 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
{
"name": "simple-beckn",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev:bap": "nodemon --exec ts-node main.ts bap",
"dev:bpp": "nodemon --exec ts-node main.ts bpp",
"build": "tsc",
"start": "NODE_ENV=production node dist/main.js",
"generate-keys": "node scripts/generate-keys.js",
"create-config": "node scripts/setup.js",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/newrelic": "^9.14.3",
"axios": "^1.4.0",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-openapi-validator": "^5.0.4",
"libsodium-wrappers": "^0.7.13",
"localtunnel": "^2.0.2",
"module-alias": "^2.2.3",
"morgan": "^1.10.0",
"newrelic": "^11.5.0",
"node-json-db": "^2.2.0",
"redis": "^4.6.7",
"server-health": "^5.2.0",
"winston": "^3.11.0",
"yaml": "^2.3.1"
},
"_moduleAliases": {
"@": "src"
},
"imports": {
"@": "src"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@types/axios": "^0.14.0",
"@types/express": "^4.17.17",
"@types/libsodium-wrappers": "^0.7.10",
"@types/localtunnel": "^2.0.1",
"@types/module-alias": "^2.0.4",
"@types/morgan": "^1.9.4",
"@types/node-json-db": "^0.9.3",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@typescript-eslint/parser": "^5.60.1",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"nodemon": "^2.0.22",
"prettier": "2.8.8",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}