-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
35
36
37
38
39
40
41
42
43
44
45
{
"name": "vacation_days_calculator",
"version": "1.0.0",
"description": "Vacation days calculator",
"main": "index.js",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --coverage --watchAll",
"dev": "tsnd ./src"
},
"keywords": [
"vacation",
"days",
"calculator"
],
"author": "Dzheni Pavlova",
"license": "ISC",
"dependencies": {
"@babel/preset-typescript": "^7.10.4",
"csv-parser": "^2.3.3",
"csv-stringify": "^5.5.1",
"jest": "^26.4.2",
"moment": "^2.29.0",
"neat-csv": "^5.2.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^26.3.0",
"eslint": "^7.9.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-jest": "^24.0.2",
"prettier": "2.1.2",
"ts-node-dev": "^1.0.0-pre.63",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=12.8.0"
},
"engineStrict": true
}