-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"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": {
"body-parser": "~1.18.2",
"cookie-parser": "~1.4.3",
"cors": "^2.8.4",
"debug": "~2.6.9",
"del": "^3.0.0",
"dotenv": "^5.0.1",
"express": "^4.17.3",
"hbs": "^4.1.1",
"moment": "^2.29.2",
"morgan": "~1.9.0",
"multer": "^1.3.0",
"nedb": "^1.8.0",
"node-cron": "^1.2.1",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"serve-favicon": "~2.4.5"
},
"engines": {
"node": ">= 12.0.0"
},
"devDependencies": {
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"superagent": "^6.1.0",
"supertest": "^6.1.6"
}
}