-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.2 KB
/
package.json
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
{
"name": "comem-rest-demo",
"version": "2.1.0",
"private": true,
"type": "module",
"scripts": {
"apidoc": "apidoc -i routes -o docs",
"apidoc:watch": "onchange APIDOC.md routes/**/*.js -- npm run apidoc",
"dev": "concurrently \"npm run nodemon\" \"npm run apidoc:watch\"",
"doctoc": "doctoc --github --notitle README.md",
"format": "prettier --config ./.prettierrc.yml --check .",
"format:write": "prettier --config ./.prettierrc.yml --write .",
"nodemon": "DEBUG=demo:* AUTH_TOKEN=secret nodemon",
"start": "node ./bin/www.js",
"test": "cross-env NODE_ENV=test NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"apidoc": "^1.2.0",
"body-parser": "^1.20.0",
"debug": "^4.3.4",
"express": "^4.18.1",
"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": "^7.0.3",
"doctoc": "^2.2.0",
"jest": "^29.0.0",
"nodemon": "^3.0.1",
"onchange": "^7.1.0",
"prettier": "^3.0.3",
"supertest": "^7.0.0"
},
"engines": {
"node": "^22"
}
}