-
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.12 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.12 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": "imgdmp",
"version": "0.0.1",
"description": "A service for uploading and storing images",
"license": "MIT",
"scripts": {
"start": "node ./bin/www",
"housekeeping": "node ./bin/housekeeping",
"test": "jest",
"dev": "nodemon ./bin/www",
"debug": "nodemon --inspect ./bin/www",
"prettier": "prettier -w ./src/**/*.js"
},
"dependencies": {
"@seald-io/nedb": "^4.1.2",
"body-parser": "~2.2.1",
"cookie-parser": "~1.4.7",
"cors": "^2.8.4",
"debug": "~4.4.3",
"del": "^8.0.1",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"hbs": "^4.2.0",
"moment": "^2.30.1",
"morgan": "~1.10.1",
"multer": "^2.0.2",
"node-cron": "^4.2.1",
"passport": "^0.7.0",
"passport-http-bearer": "^1.0.1",
"serve-favicon": "~2.5.1"
},
"engines": {
"node": ">= 24.0.0"
},
"devDependencies": {
"eslint": "^10.0.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"jest": "^30.0.0",
"nodemon": "^3.1.11",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"superagent": "^10.2.3",
"supertest": "^7.1.4"
}
}