-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.03 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.03 KB
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
{
"name": "typescript-code-challenges-and-tests",
"author": "Ingrid Garcia",
"description": "Using Codeacademy's (\"20 Code Challenges\")[https://www.codecademy.com/resources/blog/20-code-challenges/], To help me improve my skills in TypeScript.",
"license": "MIT",
"version": "1.0.0",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"test": "jest",
"lint": "eslint src/ --ext .js,.ts",
"lint:fix": "eslint src/ --fix --ext .js,.ts",
"build": "tsc",
"start": "node dist/index.js",
"prepare": "husky install"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/node": "^20.3.0",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"node-fetch": "^2.6.1",
"typescript": "^5.1.3"
},
"dependencies": {
"ts-jest": "^29.1.0"
},
"keywords": [
"nodejs",
"typescript",
"jest"
]
}