-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.18 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
{
"name": "user-feedback-store",
"main": "bin/index.js",
"version": "0.2.0",
"author": "",
"description": "Backend API for use with the user-feedback-form frontend",
"scripts": {
"lint": "eslint .",
"start": "npm-run-all -p start:*",
"start:mongo": "node ./tests/integration/mongo-dev-server.js",
"start:function": "MONGO_CONNECTION_STRING=\"mongodb://127.0.0.1:51412/userfeedback?\" func start --javascript -p 7071",
"test": "npm-run-all test:*",
"test:unit": "jest --coverage --projects tests/unit",
"test:integration": "start-server-and-test 'npm start' 7071 'jest --projects tests/integration'"
},
"devDependencies": {
"@shelf/jest-mongodb": "^4.2.0",
"axios": "^1.6.7",
"azure-functions-core-tools": "^4.0.5530",
"csv-parse": "^4.10.1",
"eslint": "^8.56.0",
"eslint-config-nhsuk": "^1.0.0",
"jest": "^29.7.0",
"mongodb-memory-server": "^9.1.6",
"npm-run-all": "^4.1.5",
"start-server-and-test": "^2.0.3"
},
"dependencies": {
"browserslist": "^4.23.0",
"caniuse-lite": "^1.0.30001588",
"debug": "^4.3.4",
"mongodb": "^6.3.0",
"uuid": "^9.0.1",
"uuidv4": "^6.2.13",
"yargs": "^15.3.1"
}
}