-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.71 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.71 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
47
48
49
50
51
52
53
54
{
"name": "express-javascript-template",
"license": "MIT",
"private": true,
"description": "A template project for using Express with JavaScript and webpack.",
"author": {
"name": "Brittni Watkins",
"url": "https://blwatkins.github.io/"
},
"homepage": "https://github.com/blwatkins/express-javascript-template#readme",
"repository": {
"type": "git",
"url": "https://github.com/blwatkins/express-javascript-template.git"
},
"bugs": {
"url": "https://github.com/blwatkins/express-javascript-template/issues"
},
"type": "module",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"scripts": {
"lint:client": "eslint -c eslint.config.client.mjs ./src-client",
"lint:server": "eslint -c eslint.config.server.mjs .",
"lint:all": "npm run lint:client && npm run lint:server",
"build": "webpack --mode production",
"build:watch": "webpack --mode production --watch",
"build:dev": "webpack --mode development",
"build:dev:watch": "webpack --mode development --watch",
"build:check": "npm run build:dev && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/main.mjs",
"start": "npm run build && node src/main.mjs"
},
"dependencies": {
"cors": "^2.8.6",
"ejs": "^5.0.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.2",
"helmet": "^8.1.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.1.0",
"eslint-plugin-es-x": "^9.6.0",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-security": "^4.0.0",
"globals": "^17.4.0",
"nodemon": "^3.1.14",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
}
}