-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.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
{
"name": "arroyo-erp-api",
"version": "2.4.1",
"description": "API for Arroyo Erp",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production NTBA_FIX_319=1000 node ./bin/www",
"dev": "NODE_ENV=dev NTBA_FIX_319=1000 nodemon ./bin/www",
"test": "NODE_ENV=test NTBA_FIX_319=1000 jest --detectOpenHandles --coverage --maxWorkers=50%",
"lint": "eslint '**/*.js'",
"publish": "docker build . -t soker90/arroyo-erp-api:latest -f ./Dockerfile && docker push soker90/arroyo-erp-api:latest"
},
"pre-push": [
"test",
"eslint"
],
"keywords": [
"api",
"nodeJS"
],
"license": "MIT",
"packageManager": "[email protected]",
"dependencies": {
"@hapi/boom": "^10.0.1",
"arroyo-erp-models": "^1.4.2",
"bcrypt": "^5.1.1",
"bluebird": "^3.7.2",
"body-parser": "^1.20.3",
"carbone": "^3.5.6",
"cors": "^2.8.5",
"express": "^4.21.1",
"helmet": "^8.0.0",
"jsonwebtoken": "^9.0.2",
"lodash.unionwith": "^4.6.0"
},
"engines": {
"node": "20.x"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.3.2",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.9.0",
"jest": "^29.7.0",
"jest-sonar-reporter": "^2.0.0",
"nock": "^13.5.6",
"nodemon": "^3.1.7",
"supertest": "^7.0.0"
},
"fakeTimers": {
"enableGlobally": true
}
}