-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.5 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.5 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
{
"name": "immunization-server",
"version": "0.0.0",
"description": "Immunization dashboard backend API server.",
"scripts": {
"start": "npm run build && npx node build/server.js",
"build": "npx tsc && npm run copy-files",
"copy-files": "cp -Rf src/data/ build/data/",
"watch": "nodemon --watch 'src/**' --ext 'ts,json' --ignore 'src/**/*.spec.ts' --exec 'npx ts-node src/server.ts'",
"test": "jest",
"test-watch": "nodemon --watch '{src,test}/**' --ext 'ts,json' --exec 'npx jest'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lee-informatics/immunization-server.git"
},
"keywords": [
"asu shares",
"cds hooks"
],
"author": "Preston Lee",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/lee-informatics/immunization-server/issues"
},
"homepage": "https://github.com/lee-informatics/immunization-server#readme",
"dependencies": {
"axios": "^1.11.0",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0",
"mongo": "^0.1.0",
"nodemon": "^3.1.10",
"supertest": "^7.1.4",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/fhir": "^0.0.41",
"@types/jest": "^30.0.0",
"@types/uuid": "^10.0.0"
}
}