-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 742 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 742 Bytes
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
{
"name": "atlas-sanctum-api",
"version": "0.1.0",
"description": "Atlas Sanctum - Reference API framework for regenerative systems",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"test": "jest --runInBand",
"migrate-db": "node db/migrate.js",
"docker:build": "docker build -t $IMAGE_NAME ."
},
"license": "Apache-2.0",
"dependencies": {
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"swagger-ui-express": "^4.6.3",
"yamljs": "^0.3.0"
,
"pg": "^8.11.0",
"axios": "^1.4.0",
"jose": "^4.18.0"
},
"devDependencies": {
"jest": "^29.6.1",
"nodemon": "^3.1.11",
"supertest": "^6.3.3"
}
}