-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.48 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
46
47
48
49
50
51
52
{
"name": "absences-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "node build/index.js",
"dev": "nodemon src/index.ts",
"test": "jest",
"test:staged": "jest --findRelatedTests --bail --watchAll=false --passWithNoTests",
"lint": "eslint src --max-warnings=0",
"lint:staged": "eslint --max-warnings=0",
"typecheck": "tsc -p tsconfig.json --noEmit",
"typecheck:staged": "tsc-files --noEmit",
"prettier": "prettier src --write",
"prettier:staged": "prettier --write",
"prepare": "husky install",
"lint-staged": "lint-staged --config lint-staged.config.js",
"postinstall": "tsc"
},
"author": "Dorian Alvarado",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@types/ramda": "^0.28.15",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^29.0.1",
"lint-staged": "^13.0.3",
"nodemon": "^2.0.19",
"prettier": "^2.7.1",
"tsc-files": "^1.1.3",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.8.2"
},
"dependencies": {
"awilix": "^7.0.3",
"cors": "^2.8.5",
"date-fns": "^2.29.2",
"express": "^4.18.1",
"ramda": "^0.28.0",
"ts-node": "^10.9.1",
"uuid": "^8.3.2"
}
}