forked from SamHardiment/ServerQuizzards
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.03 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
{
"name": "serverlap3",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon --legacy-watch server.js",
"seedDev": "node dbConfig/seedDev.js",
"start": "node server.js",
"test": "jest --setupFiles ./test/intergration/config.js --watchAll --detectOpenHandles --runInBand --verbose",
"unitTests": "jest --testPathPattern=/unit/ --watchAll --verbose",
"coverage": "jest --testPathPattern=/unit/ --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SamHardiment/Server-Quizzards.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/SamHardiment/Server-Quizzards/issues"
},
"homepage": "https://github.com/SamHardiment/Server-Quizzards#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"pg": "^8.7.3",
"socket.io": "^4.5.1"
},
"devDependencies": {
"jest": "^28.1.1",
"nodemon": "^2.0.18",
"supertest": "^6.2.3"
}
}