-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.05 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
{
"name": "mirador-coverpages",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node ./bin/www",
"devstart": "nodemon ./bin/www",
"devserverstart": "DEBUG=node-ci-template:* npm run devstart",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watchAll",
"test:unit": "./node_modules/.bin/jest --testPathPattern=__tests__/unit",
"test:integration": "./node_modules/.bin/jest --testPathPattern=__tests__/integration"
},
"dependencies": {
"axios": "^1.3.3",
"cookie-parser": "~1.4.6",
"date-fns": "^2.29.3",
"debug": "~4.3.4",
"express": "~4.18.2",
"helmet": "^6.0.1",
"http-errors": "~2.0.0",
"joi": "^17.8.3",
"jsonschema": "^1.4.1",
"morgan": "~1.10.0",
"pug": "^3.0.2",
"rotating-file-stream": "^3.1.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"jest": "^29.4.3",
"nodemon": "^2.0.22",
"supertest": "^6.3.3"
},
"jest": {
"verbose": true,
"testEnvironment": "node"
}
}