This repository was archived by the owner on Jan 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 KB
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
48
49
50
51
{
"name": "webapp",
"version": "0.0.0",
"description": "Webapp for managing ER patients",
"engines": {
"node": "10.15.0",
"npm": "6.11.3"
},
"main": "server.js",
"scripts": {
"client": "npm start --prefix client",
"dev": "concurrently \"npm run server\" \"npm run client\" ",
"start": "node server.js",
"server": "nodemon server",
"test:server": "npm run test:api",
"test:coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls",
"test:site": "cd client && npm run test",
"test:api": "jest --detectOpenHandles",
"test:api:watch": "jest --detectOpenHandles --watch",
"test:api:cov": "jest --detectOpenHandles --watch --coverage",
"test:action": "cd client && npm run test",
"heroku-postbuild": "NPM_CONFIG_PRODUCTION=false npm install --prefix client && npm run build --prefix client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjSante/webapp.git"
},
"author": "https://github.com/ProjSante",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ProjSante/webapp/issues"
},
"homepage": "https://github.com/ProjSante/webapp#readme",
"dependencies": {
"bcryptjs": "^2.4.3",
"express": "^4.17.1",
"express-validator": "^6.2.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.7.0"
},
"devDependencies": {
"axios": "^0.19.0",
"concurrently": "^4.1.2",
"coveralls": "^3.0.7",
"eslint": "^6.3.0",
"jest": "24.8.0",
"node-mocks-http": "^1.8.0",
"nodemon": "^1.19.2",
"supertest": "^4.0.2"
}
}