forked from GSA-TTS/forms-doj-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 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
{
"name": "doj-forms-server",
"version": "1.0.0",
"description": "Forms Platform server instance for DOJ",
"type": "module",
"license": "CC0",
"main": "src/index.ts",
"scripts": {
"build": "tsup src/* --format esm",
"build:imageod": "docker build --secret id=npmrc,src=.npmrc -t forms-server .",
"build:image": "docker-compose build app",
"build:imagesdf": "IMAGE_ID=$(docker-compose images app | awk 'NR==2 {print $4}')",
"clean": "rimraf dist tsconfig.tsbuildinfo coverage",
"dev": "tsup src/* --watch --format esm",
"start": "node dist/index.js",
"test": "vitest run --coverage"
},
"dependencies": {
"@gsa-tts/forms-database": "0.1.2",
"@gsa-tts/forms-infra-aws-cdk": "0.1.12",
"@gsa-tts/forms-infra-core": "0.1.4",
"@gsa-tts/forms-server": "0.1.2"
},
"devDependencies": {
"@types/supertest": "^6.0.2",
"@vitest/coverage-v8": "^3.0.7",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"supertest": "^7.0.0",
"tsup": "^8.4.0",
"vitest": "^3.0.7"
}
}