forked from HR-ATX58-Team-Hyena/sdc-questions-and-answers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.16 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": "sdc-questions-and-answers",
"version": "1.0.0",
"description": "Questions and Answers service for Project Catwalk",
"main": "server/index.js",
"jest": {
"verbose": true
},
"scripts": {
"start": "nodemon server/index.js",
"test": "jest",
"test:watch": "jest --verbose --watchAll",
"loadtest": "artillery run -o tests/artillery/reports/ tests/artillery/q_aArtillery.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HR-ATX58-Team-Hyena/sdc-questions-and-answers.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/HR-ATX58-Team-Hyena/sdc-questions-and-answers/issues"
},
"homepage": "https://github.com/HR-ATX58-Team-Hyena/sdc-questions-and-answers#readme",
"dependencies": {
"cors": "^2.8.5",
"express": "^4.17.1",
"newrelic": "^8.4.0",
"nodemon": "^2.0.13",
"pg": "^8.7.1",
"redis": "^3.1.2"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.2",
"jest": "^27.2.4",
"jest-serial-runner": "^1.2.0",
"jest-stare": "^2.3.0",
"supertest": "^4.0.2"
}
}