forked from Postman-Devrel/Banking-API-Demo
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (51 loc) · 1.18 KB
/
package.json
File metadata and controls
52 lines (51 loc) · 1.18 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
{
"name": "intergalactic-bank-api",
"version": "1.0.0",
"description": "REST API for Intergalactic Bank - Managing accounts and transactions",
"main": "src/server.js",
"scripts": {
"start": "node src/server.js",
"dev": "nodemon src/server.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky install"
},
"keywords": [
"banking",
"api",
"rest",
"express"
],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.0.1",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"eslint": "^8.57.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"postman-cli": "^1.3.0",
"@stoplight/spectral-cli": "^6.11.0"
},
"lint-staged": {
"*.js": [
"eslint --fix"
],
"postman/collections/*.postman_collection.json": [
"spectral lint"
]
}
}