-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.65 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
48
49
50
51
52
53
54
55
{
"name": "@tamanu/meta-server",
"version": "2.9.0",
"private": true,
"description": "Meta server for Tamanu",
"homepage": "https://github.com/beyondessential/tamanu.git#readme",
"repository": "[email protected]:beyondessential/tamanu.git",
"author": "Beyond Essential Systems Pty. Ltd.",
"license": "GPL-3.0-or-later",
"main": "dist/index.js",
"bin": "dist/index.js",
"scripts": {
"build": "swc --delete-dir-on-start --out-dir dist --copy-files --source-maps true app",
"start": "node dist",
"test": "NODE_ENV=test jest",
"setup-dev": "node dist setup",
"shell": "yarn build && node dist shell",
"start-watch": "sleep 1 && nodemon --delay 1 \"dist/**/*.js\"",
"test-watch": "yarn test --watch",
"build-watch": "yarn run build --watch",
"start-dev": "concurrently npm:build-watch npm:start-watch"
},
"devDependencies": {
"@tamanu/build-tooling": "*",
"@swc/jest": "0.2.26",
"chai": "^4.1.2",
"jest": "^29.3.1",
"mocha": "^5.2.0",
"pkg": "^5.8.1",
"supertest": "^4.0.2"
},
"dependencies": {
"@tamanu/shared": "*",
"abort-controller": "^3.0.0",
"body-parser": "^1.19.0",
"compression": "^1.7.2",
"config": "^3.3.6",
"connect-flash": "^0.1.1",
"core-js": "^3.23.1",
"express": "^4.16.2",
"express-async-handler": "^1.1.4",
"express-session": "^1.15.6",
"express-validator": "^6.5.0",
"follow": "^1.1.0",
"lodash": "^4.17.5",
"morgan": "^1.10.0",
"node-fetch": "^2.6.1",
"prompts": "^2.0.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"sanitize-html": "^2.12.1",
"sequelize": "^6.23.2",
"winston": "^3.2.1"
}
}