-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 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
{
"name": "card-games-api",
"version": "1.0.0",
"description": "API for card games",
"scripts": {
"dev": "nodemon src/server.js",
"start": "node src/server.js",
"test:e2e": "jest --verbose ./src/tests/e2e",
"test:unit": "jest --verbose ./src/tests/unit",
"test:coverage": "jest --collectCoverage",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igorantun/card-games-api.git"
},
"author": "Igor Antun <igor@antun.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/igorantun/card-games-api/issues"
},
"homepage": "https://github.com/igorantun/card-games-api#readme",
"devDependencies": {
"jest": "26.0.1",
"nodemon": "2.0.20",
"standard": "14.3.4",
"supertest": "4.0.2"
},
"dependencies": {
"dotenv": "8.2.0",
"express": "4.18.2",
"helmet": "3.22.0",
"joi": "14.3.1",
"mongoose": "5.13.15",
"ramda": "0.27.0",
"shuffle-array": "1.0.1"
},
"standard": {
"env": [
"jest"
]
},
"jest": {
"testEnvironment": "node"
}
}