-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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
52
53
54
55
{
"name": "Gitoscope",
"version": "0.1.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"watch": "nodemon ./bin/www",
"watchd": "nodemon --inspect ./bin/www",
"debug": "node --inspect ./bin/www",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"dependencies": {
"body-parser": "^1.20.3",
"cookie-parser": "^1.4.7",
"debug": "^4.3.7",
"express": "^4.21.2",
"pug": "^3.0.3",
"morgan": "^1.10.0",
"simple-git": "^3.27.0",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"supertest": "^7.0.0"
},
"description": "Gitoscope\r ========",
"main": "app.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git@github.com:intresrl/gitoscope.git"
},
"author": "Francesco Sacchi <sacchi@intre.it>",
"contributors": [
"Andrea Caglio <caglio@intre.it>, Gianni Bombelli (bombo82) <bombo82@giannibombelli.it>"
],
"license": "MIT",
"engines": {
"node": ">=22.0.0",
"npm": ">=10.0.0"
}
}