-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.36 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.36 KB
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
{
"name": "profold-be-api",
"version": "1.0.0",
"description": "Project Scaffold for R17 Projects",
"main": "app.js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "profold-be-api-1"
},
"scripts": {
"test": "set USE_MOCK_MODEL=1 && mocha --recursive --require dotenv/config",
"prepare": "husky || echo \"Skipping husky prepare step\"",
"commitlint": "commitlint --edit",
"sync-envs": "node sync-env-files"
},
"keywords": [],
"author": "Resilience17",
"license": "ISC",
"dependencies": {
"@app-core/errors": "file:core/errors",
"@app-core/handlebars": "file:core/handlebars",
"@app-core/http-request": "file:core/http-request",
"@app-core/jwt": "file:core/jwt",
"@app-core/knex": "file:core/knex",
"@app-core/logger": "file:core/logger",
"@app-core/messages": "file:messages",
"@app-core/middlewares": "file:middlewares",
"@app-core/mock-factory": "file:core/mock-factory",
"@app-core/mongoose": "file:core/mongoose",
"@app-core/notifier": "file:core/notifier",
"@app-core/randomness": "file:core/randomness",
"@app-core/repository-factory": "file:core/repository-factory",
"@app-core/security": "file:core/security",
"@app-core/server": "file:core/express",
"@app-core/validator": "file:core/validator",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.18.2",
"form-data": "^4.0.2",
"handlebars": "^4.7.8",
"joi": "^17.12.2",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"mongoose": "^8.2.0",
"mysql2": "^3.9.1",
"pino": "^8.19.0",
"request-ip": "^3.3.0",
"resend": "^3.2.0",
"ua-parser-js": "^2.0.0",
"ulid": "^2.3.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@app-core/mock-http-request-proxy": "file:core/mock-http-request-proxy",
"@app-core/mock-server": "file:core/mock-server",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"chai": "^4.3.7",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-mocha": "^10.4.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"mocha": "^10.5.1",
"node-mocks-http": "^1.14.1",
"prettier": "^3.3.2"
}
}