-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 994 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 994 Bytes
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
{
"name": "pos-simulation-testing",
"version": "1.0.0",
"description": "1. PROJECT OVERVIEW\r A project to simulate and test a simple POS system using Cypress, Postman, and SQL",
"main": "app.js",
"type": "module",
"scripts": {
"start": "node server.js",
"test": "mocha --experimental-modules ./Testing_main"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dag86/pos-simulation-testing.git"
},
"keywords": [],
"author": "Amir Choshov",
"license": "ISC",
"bugs": {
"url": "https://github.com/Dag86/pos-simulation-testing/issues"
},
"homepage": "https://github.com/Dag86/pos-simulation-testing#readme",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.19.2",
"helmet": "^7.1.0",
"joi": "^17.13.3",
"morgan": "^1.10.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7"
},
"devDependencies": {
"chai": "^5.1.1",
"mocha": "^10.7.3",
"sinon": "^18.0.0",
"supertest": "^7.0.0"
}
}