-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "devops-challenge",
"version": "1.0.0",
"main": "dist/index.js",
"repository": "https://github.com/imaware/devops-challenge-2022.git",
"author": "Christopher Manzi <[email protected]>",
"license": "MIT",
"scripts": {
"docker:build": "docker build -t imaware-devops-challenge .",
"lint": "eslint --ext .ts --report-unused-disable-directives .",
"lint:fix": "eslint --ext .ts --report-unused-disable-directives . --fix",
"build": "tsc -p tsconfig.json",
"start": "node dist/index.js",
"start:local": "ts-node ./src/index.ts",
"watch": "nodemon"
},
"devDependencies": {
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "5.15.0",
"@typescript-eslint/parser": "5.15.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-prettier": "4.0.0",
"nodemon": "2.0.15",
"prettier": "2.6.0",
"ts-node": "^10.9.1",
"typescript": "4.6.2"
},
"dependencies": {
"fastify": "^4.5.3"
}
}