-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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": "qa-service",
"version": "1.0.0",
"description": "Atelier Q&A Service",
"main": "index.js",
"scripts": {
"pm": "pm2 start api/server/index.js",
"start": "npx nodemon -L server/index.js",
"nr": "node -r newrelic server/index.js",
"newrelic": "npx nodemon -r newrelic server/index.js NEW_RELIC_APP_NAME=\"QA API\"",
"test": "jest ./__tests__ --watch --coverage",
"k6": "k6 run ./__tests__/stress-test.js",
"test-local": "jest ./api/__tests__/test.js --watch --coverage",
"get-rows": "node ./data/etl/utils/count-rows.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpp2209-copernicium/qa-service.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpp2209-copernicium/qa-service/issues"
},
"homepage": "https://github.com/rpp2209-copernicium/qa-service#readme",
"dependencies": {
"express": "^4.18.2"
},
"devDependencies": {
"axios": "^1.3.4",
"csvtojson": "^2.0.10",
"dotenv": "^16.0.3",
"fs": "^0.0.1-security",
"jest": "^29.4.3",
"nodemon": "^2.0.20",
"pg": "^8.10.0"
}
}