-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.09 KB
/
package.json
File metadata and controls
41 lines (41 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
36
37
38
39
40
41
{
"name": "@stanlemon/server",
"version": "0.4.6",
"description": "A basic express web server setup.",
"author": "Stan Lemon <stanlemon@users.noreply.github.com>",
"license": "MIT",
"engines": {
"node": ">=22.15.1"
},
"type": "module",
"main": "./src/index.js",
"exports": "./src/index.js",
"scripts": {
"start": "NODE_ENV=development nodemon ./app.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "jest --detectOpenHandles",
"test:coverage": "jest --detectOpenHandles --coverage",
"test:watch": "jest --detectOpenHandles --watch"
},
"dependencies": {
"@stanlemon/webdev": "*",
"body-parser": "^2.2.0",
"compression": "^1.8.0",
"cookie-parser": "^1.4.7",
"dotenv": "16.5.0",
"express": "^5.1.0",
"express-rate-limit": "^7.5.0",
"helmet": "^8.1.0",
"http-proxy-middleware": "^3.0.5",
"joi": "^17.13.3",
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"morgan": "^1.10.0"
},
"devDependencies": {
"@stanlemon/eslint-config": "*",
"@types/lodash": "^4.17.17",
"nodemon": "^3.1.10"
}
}