-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 980 Bytes
/
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
{
"name": "y",
"version": "1.0.0",
"description": "An API for a RHoMIS data management tool",
"main": "app.js",
"scripts": {
"start-dev": "cross-env NODE_ENV=dev nodemon ./app.js",
"start-prod": "./node_modules/.bin/cross-env NODE_ENV=production ./node_modules/.bin/pm2 start ./app.js",
"start-test": "cross-env NODE_ENV=test ./node_modules/.bin/mocha --timeout 5000",
"start-test-debug": "cross-env NODE_ENV=test DEBUG=nock.* ./node_modules/.bin/mocha --timeout 5000"
},
"author": "Leo Gorman",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"child_process": "^1.0.2",
"config": "^3.3.6",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.12.14",
"pm2": "^5.1.1"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"mocha": "^9.0.3",
"nock": "^13.1.3",
"nodemon": "^2.0.12"
}
}