-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 903 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 903 Bytes
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
{
"name": "node-demo",
"version": "2.1.1",
"type": "module",
"private": true,
"scripts": {
"lint:js": "npx eslint .",
"lint:ejs": "npx ejslint \"**/*.ejs\"",
"lint:html": "npx htmlhint views/**/*.ejs",
"test": "npx mocha test/*.mjs",
"start": "node ./bin/www",
"build": "echo \"No build step defined\""
},
"dependencies": {
"cookie-parser": "~1.4.7",
"debug": "~4.4.3",
"ejs": "~5.0.2",
"express": "~5.2.1",
"http-errors": "~2.0.0",
"morgan": "~1.10.1"
},
"overrides": {
"serialize-javascript": "^7.0.5"
},
"devDependencies": {
"chai": "^6.2.2",
"ejs-lint": "^2.0.0",
"eslint": "^10.2.0",
"eslint-plugin-ejs": "^0.0.2",
"eslint-plugin-ejs-js": "^0.1.0",
"eslint-plugin-html": "^8.1.4",
"eslint-plugin-node": "^11.1.0",
"htmlhint": "^1.9.2",
"mocha": "^11.3.0",
"supertest": "^7.2.2"
}
}