-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.03 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "comem-rest-demo",
"version": "3.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "npm run nodemon",
"doctoc": "doctoc --github --notitle README.md",
"format": "prettier --config ./.prettierrc.yml --check .",
"format:write": "prettier --config ./.prettierrc.yml --write .",
"nodemon": "cross-env AUTH_TOKEN=secret DEBUG=demo:* nodemon",
"start": "node ./bin/www.js",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"body-parser": "^2.2.0",
"debug": "^4.3.4",
"express": "^5.1.0",
"format-link-header": "^3.1.1",
"js-yaml": "^4.1.0",
"mongoose": "^8.6.2",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"swagger-ui-express": "^5.0.0"
},
"devDependencies": {
"concurrently": "^9.0.0",
"cross-env": "^10.0.0",
"doctoc": "^2.2.0",
"jest": "^30.1.3",
"nodemon": "^3.0.1",
"onchange": "^7.1.0",
"prettier": "^3.0.3",
"supertest": "^7.0.0"
},
"engines": {
"node": "^24"
}
}