forked from tyleryasaka/TrackCOVID-community
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.41 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
{
"name": "trackcovid-server",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"build": "npm run build-env && (cd admin && npm run build); (cd app && npm run build)",
"build-env": "node build-env.js",
"create-user": "NODE_OPTIONS=--no-warnings node create-admin-user.js",
"clean-db": "NODE_OPTIONS=--no-warnings node clean-database.js",
"test": "cd trackcovid-js && npm test && cd ../admin && npm test && cd ../app && npm test",
"postinstall": "(cd trackcovid-js && npm install); (cd admin && npm install); (cd app && npm install)"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tyleryasaka/TrackCOVID.git"
},
"author": "Tyler M Yasaka",
"license": "MIT",
"bugs": {
"url": "https://github.com/tyleryasaka/TrackCOVID/issues"
},
"homepage": "https://github.com/tyleryasaka/TrackCOVID#readme",
"dependencies": {
"@sendgrid/mail": "^7.2.0",
"body-parser": "^1.19.0",
"connect-flash": "^0.1.1",
"cookie-parser": "^1.4.5",
"cookie-session": "^1.4.0",
"csv-writer": "^1.6.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"js-sha256": "^0.9.0",
"mongoose": "^5.9.6",
"morgan": "^1.10.0",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.0.1",
"pdfkit": "^0.11.0",
"qrcode": "^1.4.4",
"r7insight_node": "^2.0.0"
}
}