-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 955 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 955 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
32
33
34
{
"name": "povio-assignment",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint --fix src/**/*.ts",
"build": "tsc",
"start:dev": "nodemon -e ts --exec \"tsc && node ./dist/main.js\"",
"start:prod": "tsc && node ./dist/main.js",
"docker:dev": "docker-compose up",
"docker:prod": "docker-compose -f docker-compose.prod.yml up -d"
},
"keywords": [],
"author": "Bartolomej Kozorog",
"license": "ISC",
"devDependencies": {
"@types/jest": "^27.4.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"eslint": "^8.11.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"typescript": "^4.6.2"
},
"dependencies": {
"nodemon": "^2.0.15"
}
}