-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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": "tamanu-status",
"version": "1.0.0",
"description": "Status pages for Tamanu",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "mkdirp dist && swc src -d dist -s",
"watch:build": "swc src -d dist -s -w",
"check": "tsc --project .",
"watch:check": "tsc --watch --preserveWatchOutput --project .",
"test": "jest",
"watch:test": "jest --watch",
"start": "node dist/index.js",
"start:eb": "DATABASE_URL=\"postgresql://$RDS_USERNAME:$RDS_PASSWORD@$RDS_HOSTNAME:$RDS_PORT/$RDS_DB_NAME\" npm start",
"once": "npm-run-all check build test start",
"watch:start": "nodemon -w dist dist/index.js",
"watch": "npm-run-all build --parallel watch:build watch:check watch:start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beyondessential/tamanu-status.git"
},
"author": "Beyond Essential Systems Pty. Ltd.",
"license": "SEE LICENSE IN license",
"devDependencies": {
"@swc/cli": "^0.1.57",
"@swc/core": "^1.3.10",
"@types/ejs": "^3.1.1",
"@types/node": "^18.11.5",
"@types/pg": "^8.6.5",
"chokidar": "^3.5.3",
"jest": "^29.2.2",
"mkdirp": "^1.0.4",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.8.4"
},
"dependencies": {
"@fastify/postgres": "^5.1.0",
"@fastify/view": "^7.1.1",
"ejs": "^3.1.8",
"fastify": "^4.9.2",
"yup": "^0.32.11"
}
}