-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.09 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.09 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
{
"name": "@frontend-layers/get-api",
"version": "1.0.0",
"description": "Get API is a simple project that allows you to fetch some data from various services.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "concurrently \"nodemon index.js\" \"node app/browser-sync.js\"",
"test": "mocha ./app/public/tests/**/*.mjs --reporter mochawesome --reporter-options reportDir=./app/public/tests/report,reportFilename=index.html,quiet=true",
"publish": "npm publish --access public"
},
"author": "",
"license": "MIT",
"devDependencies": {
"browser-sync": "^3.0.3",
"chai": "^5.1.2",
"chai-http": "^5.1.1",
"compression": "^1.7.5",
"concurrently": "^9.1.2",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^4.21.2",
"express-flash": "^0.0.2",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.1",
"express-validator": "^7.2.1",
"helmet": "^8.0.0",
"lodash-es": "^4.17.21",
"mocha": "^11.0.1",
"mochawesome": "^7.1.3",
"node-fetch": "^2.7.0",
"open": "^10.1.0",
"winston": "^3.17.0"
}
}