forked from rpp32-sdc-saline/questions_answers-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.26 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
43
44
45
46
47
{
"name": "questions_answers-api",
"version": "1.0.0",
"description": "",
"main": "config.js",
"scripts": {
"startDB": "brew services start postgresql",
"stopDB": "brew services stop postgresql",
"server": "nodemon ./server/server.js",
"insert": "node database/ETL/index.js",
"insertPhotos": "node database/ETL/addingPhotos.js",
"test": "node tests/app.test.js",
"newrelic": "node -r newrelic server/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rpp32-sdc-saline/questions_answers-API.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/rpp32-sdc-saline/questions_answers-API/issues"
},
"homepage": "https://github.com/rpp32-sdc-saline/questions_answers-API#readme",
"dependencies": {
"csv-parse": "^5.0.4",
"dotenv": "^16.0.0",
"fast-csv": "^4.3.6",
"newrelic": "^8.9.0",
"nodemon": "^2.0.15",
"pg": "^8.7.1",
"pg-format": "^1.0.4",
"pm2": "^5.2.0",
"redis": "^4.0.4"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"express": "^4.17.2",
"jest": "^27.5.0",
"superagent": "^7.1.1",
"supertest": "^6.2.2",
"webpack": "^5.68.0"
}
}