-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.2 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
{
"name": "postbox-api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"coverage": "nyc npm run test",
"lint": "./node_modules/.bin/eslint . --fix --ext .js,.ts --max-warnings 0",
"test-unit": "mocha -r dotenv/config 'test/unit/**/*.js'",
"test-integration": "CLUSTER_PROCESSES=0 mocha -r dotenv/config 'test/integration/**/*.js' --exit",
"test": "npm run test-integration && npm run test-unit",
"test-unit-cicd": "mocha -r dotenv/config 'test/unit/**/*.js' --reporter test/test-reporter.js --reporter-option output=unittest.xml",
"test-integration-cicd": "CLUSTER_PROCESSES=0 mocha -r dotenv/config 'test/integration/**/*.js' --reporter test/test-reporter.js --reporter-option output=unittest.xml --exit",
"start": "node -r dotenv/config --max-old-space-size=2048 app.js",
"dev": "nodemon -r dotenv/config --max-old-space-size=2048 app.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@cloudant/cloudant": "^4.5.1",
"async_hooks": "^1.0.0",
"body-parser": "^1.20.1",
"cookie-session": "^2.0.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"helmet": "^6.0.0",
"ibmcloud-appid": "^6.2.6",
"log4js": "^6.7.0",
"morgan": "^1.10.0",
"nano": "^10.0.0",
"passport": "^0.6.0",
"passport-azure-ad": "^4.3.4",
"swagger-ui-express": "^4.6.0",
"uuid": "^9.0.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"babel-eslint": "^10.1.0",
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"chai-http": "^4.3.0",
"dotenv": "^16.0.3",
"eslint": "^8.20.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-node": "^4.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"lint-staged": "^13.0.3",
"mocha": "^10.1.0",
"nock": "^13.2.9",
"nodemon": "^2.0.19",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^14.0.1"
}
}