-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 838 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 838 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
31
{
"name": "restAPI",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cp src/.env ./dist/.env && tsc",
"start": "node ./dist/index.js",
"dev": "ts-node --files ./src/index.ts",
"test": "NODE_ENV=test npx jest --verbose --runInBand",
"deploy": "docker build -t docker.devbaier.dev/api . && docker push docker.devbaier.dev/api"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/dockerode": "^3.2.1",
"@types/jest": "^26.0.19",
"@types/node": "^14.14.19",
"axios": "^0.21.1",
"dockerode": "^3.2.1",
"dotenv": "^9.0.1",
"fastify": "^3.9.2",
"fastify-blipp": "^3.0.0",
"fastify-plugin": "^3.0.0",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}