-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.78 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
64
65
66
67
68
69
{
"name": "unisaeat_be",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "node server.js",
"test": "mocha ./test/tests.js --timeout 10000 --exit",
"_comment": "Note: --exit in the test element is to force the test program to exit after finishing in case we use done()",
"coverage": "nyc --reporter=lcov --reporter=text-lcov npm test"
},
"nyc": {
"_comment": "Purpose of this part: to do code coverage within Mocha/Chai using Istanbul",
"register": "babel-register",
"include": [
"**/*.js",
"./*.js"
],
"exclude": [
"**/node_modules/**",
"**/test/**",
"**/coverage/**",
"**/Database_Init",
"**/controller/controller_menu.js",
"**/controller/controller_notifica.js",
"**/controller/controller_ordine.js",
"**/controller/controller_statistiche.js",
"**/controller/controller_conversazione.js"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnisaEAT/UnisaEAT_ProjectBE.git"
},
"keywords": [
"nodejs",
"express",
"mongodb",
"rest",
"api"
],
"author": "UnisaEAT Team",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"bootstrap": "^5.1.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"express-react-views": "^0.11.0",
"express-session": "^1.17.2",
"fs": "^0.0.1-security",
"mongoose": "^5.8.10",
"node-mocks-http": "^1.11.0",
"path": "^0.12.7",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"body-parser": "^1.19.1",
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"codecov": "^3.8.3",
"coverage-node": "^5.0.1",
"express": "^4.17.2",
"mocha": "^9.1.4",
"nyc": "^15.1.0",
"standard": "^16.0.4"
}
}