-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.81 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
{
"name": "labeler",
"version": "1.0.0",
"private": true,
"description": "Quickly set up and perform collaborative manual analysis.",
"main": "index.js",
"type": "module",
"scripts": {
"lint": "npm-run-all --parallel lint:*",
"lint:js": "eslint .",
"lint:css": "stylelint stylelint public/css/*.css",
"lint:md": "markdownlint *.md",
"minify": "npm-run-all --parallel minify:*",
"minify:css": "cleancss --batch --batch-suffix '' public/css/*.css",
"start": "NODE_ENV=production node index.js",
"dev": "nodemon index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seart-group/labeler.git"
},
"author": {
"name": "Ozren Dabić",
"email": "[email protected]",
"url": "https://dabico.github.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/seart-group/labeler/issues"
},
"homepage": "https://github.com/seart-group/labeler#readme",
"devDependencies": {
"@eslint/js": "^9.23.0",
"clean-css-cli": "^5.6.3",
"eslint": "^9.23.0",
"globals": "^16.0.0",
"markdownlint": "^0.37.4",
"markdownlint-cli": "^0.44.0",
"nodemon": "^3.1.9",
"npm-run-all": "^4.1.5",
"stylelint": "^16.17.0"
},
"dependencies": {
"body-parser": "^1.20.3",
"compression": "^1.8.0",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-actuator": "^1.8.4",
"express-file-routing": "^3.0.3",
"express-minify-html-2": "^2.0.0",
"express-paginate": "^1.0.2",
"JSONStream": "^1.3.5",
"morgan": "^1.10.0",
"neoip": "^3.0.1",
"pg": "^8.14.1",
"pg-error-enum": "^0.7.3",
"pg-query-stream": "^4.8.1",
"postgres-array": "^3.0.4",
"rotating-file-stream": "^3.2.6",
"socket.io": "^4.8.1",
"uglify-js": "^3.19.3",
"useragent": "^2.3.0"
}
}